有什么方法可以从 mxgraph 更改顶点或边缘样式吗?

Is there any way to change the vertex or the edges style from mxgraph?

我用 java 制作了一个图表,我想自定义它的样式。有什么简单的方法吗?通过为它们添加样式? 这是我使用的代码的一部分: 它从 json 文件中获取一些数据,这些数据被填充到一些 Hashmaps 中。

public mxGraphComponent createGlobalOverview(String Filename) {
            mxGraph graph = new mxGraph();
            Object parent = graph.getDefaultParent();

            graph.getModel().beginUpdate();
            try {
                  Object vRoot = graph.insertVertex(parent, null, Filename, 0, 0, 100, 50);
                  int fmsCounter = 0;

                  for (Object i : blueprint.keySet()) {
                      getDependencies(i.toString());
                      if (blueprint.get(i).equals("FMS")) {
                          if (dependsList.get(fmsCounter).equals("null")) {
                              Object rootFMS = graph.insertVertex(parent, null, getTitle(i.toString()), 0, 0, 200, 50);
                              graph.insertEdge(parent, null, "rootFMS", vRoot, rootFMS);
                              System.out.println(blueprint.size());
                              createGraph(graph, parent, rootFMS, i, blueprint.size());
                            }
                        }
                    }
                    graph.setCellsEditable(false);
                    graph.setCellsMovable(false);
                    graph.setCellsResizable(false);
                    graph.setCellsSelectable(false);
                    graph.setEnabled(false);
                    mxIGraphLayout layout = new mxHierarchicalLayout(graph);
                    layout.execute(parent);

              } finally {
                    graph.getModel().endUpdate();
                }
                graph.getView().setScale(0.9);
                mxGraphComponent graphComponent = new mxGraphComponent(graph);
                graphComponent.setConnectable(false);
                return graphComponent;
 }

您可以使用 mxStyleChange() API Documentation

mxStyleChange​(mxGraphModel graph, java.lang.Object cell, java.lang.String style)   

要了解有关布局的更多信息,您应该看看 here, this will help you defining the style. The shapes 也可能有用:

API 文档内容丰富,您应该经常查看那里。希望对你有帮助