I want to create a GUI in Swing which contains two vertical sections:
+-----------------------+
| labels,textfields |
| and buttons |
+-----------------------+
| |
| chart display |
| |
| |
+-----------------------+
I want the first section to take about 30% of the vertical space and the second about 70%.
How can I achieve this with Java Swing?
See also
JSplitPane.setDividerLocation(int)& How to Use Split Panes.