Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4000596
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T07:48:03+00:00 2026-05-20T07:48:03+00:00

I have a JScrollPane and JPanel inside it(I want to draw on JPanel). Also

  • 0

I have a JScrollPane and JPanel inside it(I want to draw on JPanel). Also I have a method that draws lines with parametre of length of the line. I want my JScrollPane to scroll if the length of the line is more then the size(height or width) of my JPanel that is on JScrollPane.
How can I do this?

P.S. I’ve tried jScrollPane.scrollRectToVisible but it doesn’t work

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T07:48:04+00:00Added an answer on May 20, 2026 at 7:48 am

    Here is an example implementing what you want

    import java.awt.Dimension;
    import java.awt.Graphics;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    
    public class DrawLine {
    
        JFrame j;
        JPanel p;
        JScrollPane sp;
    
        public DrawLine() {
            j = new JFrame();
            p = new JPanel() {
                public void paintComponent(Graphics g) {
                    g.drawLine(20, 20, 250, 250);
                }
            };
            p.setPreferredSize(new Dimension(300, 300));
            sp = new JScrollPane(p);
            j.getContentPane().add(sp);
            j.setSize(300, 300);
            j.setVisible(true);
        }
    
        public static void main(String[] args) {
                new DrawLine();
            }
    }
    

    Note the line p.setPreferredSize(new Dimension(300, 300)); which sets the preferred size of the panel.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a simple JEditorPane inside a JScrollPane that displays line numbers on the
I have a JScrollpane that has a JPanel on the inside (and the panel
I have a JPanel inside the JScrollPane and it does that whenever I try
I have a JPanel with a GridBagLayout inside of a JScrollPane. I also have
I have a JPanel that contains a JScrollPane that contains a JTable. Inside my
I have a JScrollPane and inside it I placed a JPanel. There is also
I have a JFrame with JScrollPane in it. I have JPanel inside a scrollPane.
I have JPanel wrapped in JScrollPane and I want the rectangle to be drawn
I have a JFrame, in this JFrame I have a JPanel that I draw
I have a JScrollPane with a JPanel that implements Scrollable as its viewport view.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.