如何删除mxGraph中的顶点边框?

时间:2014-07-23 20:26:19

标签: javascript stroke mxgraph

我试图让它得到一个顶点会突出显示鼠标上的边框,否则没有边框。我尝试使用笔触宽度和笔触颜色来做到这一点,但边框似乎不服从我将其设置为零,总是有1px轮廓。

查看我看到的源代码:

var strokeWidth=Math.max(1,this.strokewidth*this.scale);

那么我应该覆盖它并删除Math.max调用,以便不强制执行1px最小值吗?

1 个答案:

答案 0 :(得分:3)

Google Chrome会忽略笔画宽度的值0(使用1)。尝试使用

strokeColor=none

面对这些问题时,API specification值得一读。