Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在使用 JGraphX 在 JPanel 上显示静态图。到目前为止,我没有遇到任何问题。我绘制了图形,自定义了样式,甚至为自定义图形着色添加了顶点侦听器。
尽管如此,我需要我的一些图形边缘来使用虚线而不是 JGraphX 使用的标准线。像这样的东西:------------>
我已经阅读了关于 JGraphX 边缘自定义的 SO 上的不同帖子,但他们所指出的只是通过使用 mxEdgeStyle 类的常量来改变边缘样式。
JGraphX 是否有一种简单的方法提供我错过的虚线选项?
在 JGraphX 的 mxConstants 上搜索了一段时间后,我遇到了这个问题: public static String STYLE_DASHED = "dashed";
我已经在我的图表上试过了,我终于可以画出虚线边了
如果您想要虚线/虚线边缘,请使用 dashed=true 键值对或将其作为自定义选项添加到样式表中:style.put(mxConstants.STYLE_DASHED, true);