我正在尝试创建一个 JFrame,其中顶部是 JGraph 的 JPanel,底部是条形图的 JPanel,它允许用户选择图表中将出现多少个节点,以及在发生这种情况后要更新的图表。出于这个原因,我将 Graph 放在一个单独的类中,稍后我将在其中构建一个更新方法。
我的问题是包含 Graph 的 Panel 是框架的大小,但我的 Graph 仅与最大顶点值一样大。如何将我的 JPanel 更改为一定大小,并让 Graph 填满这个空间?
我这样做的方式也是实现这一目标的最佳方式还是有更好的方式?
public class MyGraph extends JFrame{
private static final long serialVersionUID = 1L;
private JPanel Gpanel;
public MyGraph(){
super("Graph");
JPanel Gpanel = new NewPanel();
getContentPane().add(Gpanel);
}
public static void main(String args[]){
MyGraph frame = new MyGraph();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(600, 600);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
class NewPanel extends JPanel{
private static final long serialVersionUID = 1L;
mxGraph graph;
Object parent;
NewPanel(){
this.graph = new mxGraph();
this.parent = graph.getDefaultParent();
graph.getModel().beginUpdate();
try{
Object v1 = graph.insertVertex(parent, null, "Hello", 20, 20, 80, 30);
Object v2 = graph.insertVertex(parent, null, "World!", 300, 150, 80, 30);
graph.insertEdge(parent, null, "Edge", v1, v2);
}
finally{
graph.getModel().endUpdate();
}
mxGraphComponent graphComponent = new mxGraphComponent(graph);
this.add(graphComponent);
}
public void Update(){
}
}
}