Note: this question is a follow up question from this question.
I have just learned the following from my last question:
JPanel
has FLowLayout
(with the same output as from NullLayout
! on resize), accepting only PreferredSize
, child aren't resizable with its container, is required to use BorderLayout
/GridLayout
for simple graph
A demonstration of this principle was also given:
import java.awt.BorderLayout;
import java.awt.Dimension;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
import org.math.plot.Plot2DPanel;
import java.awt.BorderLayout;
import java.awt.Dimension;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
import org.math.plot.Plot2DPanel;
public class MyPlot {
private JFrame frame = new JFrame("JMathPlot library in a swing application.");
private JPanel panel = new JPanel();
public MyPlot() {
double[] x = new double[]{0, 1, 2, 3, 4, 5};
double[] y = new double[]{10, 11, 12, 14, 15, 16};
Plot2DPanel plot = new Plot2DPanel() {
@Override
public Dimension getPreferredSize() {
return new Dimension(400, 200);
}
};
plot.addLinePlot("my plot", x, y); // add a line plot to the PlotPanel
panel.setLayout(new BorderLayout());
panel.add(plot);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(panel);
frame.pack();
frame.setLocation(150, 150);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new MyPlot();
}
});
}
}
Now what I want to achieve is to integrate the graph into a parent JPanel
to use it in my swing application.
A visualisation of this would be:
How do I implement the graph in my 'parent' JPanel without violating the constraints for making it work properly?
(I looked into JInternalFrame but couldn't come up with a correct implementation for my problem)
If JInternalFrame is indeed the solution, how should I use it? (Please supply code)
i don't know if that's what you're looking about but i will give you this source code, maybe it will help you:
}