Undirected Graphs in JGraphX

北战南征 提交于 2019-12-06 04:12:48

You can set the style of the edges in the mxGraphComponent to NONE:

mxGraphComponent graphComponent = new mxGraphComponent(jgxAdapter);
mxGraphModel graphModel  = (mxGraphModel)graphComponent.getGraph().getModel(); 
Collection<Object> cells =  graphModel.getCells().values(); 
mxUtils.setCellStyles(graphComponent.getGraph().getModel(), 
    cells.toArray(), mxConstants.STYLE_ENDARROW, mxConstants.NONE);
//instead of getContentPane().add(new mxGraphComponent(jgxAdapter));
getContentPane().add(graphComponent); 

for someone else have the same problem take look for this code

import com.mxgraph.layout.mxCircleLayout;
import com.mxgraph.model.mxGraphModel;
import com.mxgraph.swing.mxGraphComponent;
import com.mxgraph.util.mxConstants;
import com.mxgraph.util.mxUtils;
import java.util.Collection;
import javax.swing.JFrame;

import org.jgrapht.UndirectedGraph;
import org.jgrapht.graph.DefaultEdge;
import org.jgrapht.graph.SimpleGraph;

public class GraphTest extends JFrame {

  public GraphTest(){

      JGraphXAdapter<String, DefaultEdge> jgxAdapter;
      UndirectedGraph<String, DefaultEdge> graph =
      new SimpleGraph<String, DefaultEdge>(DefaultEdge.class);


    graph.addVertex("v1");
    graph.addVertex("v2");
    graph.addVertex("v3");
    graph.addVertex("v4");

    graph.addEdge("v1", "v2");
    graph.addEdge("v2","v3");
    graph.addEdge("v3", "v4");
    graph.addEdge("v4", "v1");


    jgxAdapter = new JGraphXAdapter <String, DefaultEdge>(graph);
    mxGraphComponent graphComponent = new mxGraphComponent(jgxAdapter);
    mxGraphModel graphModel  =       (mxGraphModel)graphComponent.getGraph().getModel(); 
    Collection<Object> cells =  graphModel.getCells().values(); 
    mxUtils.setCellStyles(graphComponent.getGraph().getModel(), 
    cells.toArray(), mxConstants.STYLE_ENDARROW, mxConstants.NONE);
    getContentPane().add(graphComponent);

    mxCircleLayout layout = new mxCircleLayout(jgxAdapter);
    layout.execute(jgxAdapter.getDefaultParent());

}
  public static void main(String[] args) {

     GraphTest g = new GraphTest();

          g.setTitle(" undirected graph ");
          g.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          g.pack();
          g.setVisible(true);
  }

}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!