Ginko Lee

Results 1 issues of Ginko Lee

首先向Json表示感谢!本人近期也在研究mxgraph,您的这个详细的demo示例给我带来了非常非常大的帮助! 因为本人实际项目中涉及需要设置 word-break 的css属性,折腾了好几天总算搞定了。也发现了您代码中一些小瑕疵,以下提出来。 Mxgraph-EasyFlowEditor-1.0-beat\src\views\customToolbar\customToolbar.vue中, - mxConstants.WORD_WRAP 设置有误 `style[mxConstants.WORD_WRAP] = "normal"` 应改为 `mxConstant.WORD_WRAP = 'normal'` 或者 `mxConstant.WORD_WRAP = 'word-break'` 本人查询源码中发现,源码是直接在设置css属性时, 将`mxConstant.WORD_WRAP`的值直接拼接字符串 `'word-warp:' + mxConstant.WORD_WRAP + ';' ` - 由于mxgraph内没有内置`word-break`属性,通过`style[mxConstants["word-break"]] =...