mxGraph:如何将边标签定位在底部

时间:2017-09-11 15:44:42

标签: javascript mxgraph

我使用mxGraph库渲染一些图表,有人可以帮我将边缘标签放在底部而不是中间吗?

提前致谢!

1 个答案:

答案 0 :(得分:1)

在相关边的样式表中

<add as="verticalAlign" value="top" />
<add as="verticalLabelPosition" value="bottom" />

插入边缘时可以内联

graph.insertEdge(..., 'defaultEdge;verticalAlign=top;verticalLabelPosition=bottom');

&#34; defaultEdge&#34;是否保留其余的默认样式,而不是完全覆盖它们。

这会将标签边界定位在边缘的底部,并将标签放在边界的顶部。