想要用JPanel制作JGraph

时间:2013-11-23 08:13:44

标签: jpanel jgraphx

我正在尝试创建一个JFrame,其中top是JGraph的JPanel,底部是一个条形图的JPanel,允许用户选择Graph中将显示的节点数,以及此后发生的图表更新。出于这个原因,我将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(){

    }
}

}

1 个答案:

答案 0 :(得分:1)

始终为面板设置布局

public MyGraph(){
    ...
    getContentPane().setLayout(new BorderLayout());
    getContentPane().add(Gpanel, BorderLayout.CENTER);
}

class NewPanel extends JPanel{
    ...

    NewPanel(){
        ...
        this.setLayout(new BorderLayout());
        this.add(graphComponent, BorderLayout.CENTER);
    }
}