我正在寻找一种在HTML中渲染图形的方法,只使用mxGraph Javascript,而不使用SVG画布。用户手册说:
mxGraph还包括完全使用html渲染的功能,这限制了可用功能的范围,但适用于更简单的图表。“
但是,我尝试了以下但没有成功:
var editor = new mxEditor();
var graph = new mxGraph(graphContElem, new mxGraphModel(), 'fastest'); // fastest maps to stricthtml
graph.setHtmlLabels(true);
graph.dialect = mxConstants.DIALECT_STRICTHTML;
editor.graph = graph;
editor.createGraph();
添加此单元格:
var prototype = new mxCell('<input type="text" value="test" />', new mxGeometry(0, 0, w, h), style);
prototype.setVertex(true);
... import cells ...
导致这一点:
<svg style="width: 100%; height: 100%; display: block; min-width: 1px; min-height: 1px;">
...
<g transform="translate(104,61)">
<foreignObject style="overflow:visible;" pointer-events="all" width="173" height="19">
<div style="display:inline-block;font-size:11px;font-family:Arial,Helvetica;color:#774400;line-height:1.2;vertical-align:top;white-space:nowrap;text-align:center;">
<div xmlns="http://www.w3.org/1999/xhtml" style="display:inline-block;text-align:inherit;text-decoration:inherit;">
<input type="text" value="test">
</div>
</div>
</foreignObject>
</g>
...
</svg>
我的目标是开发表单编辑器;因此,图形的单元格将是HTML小部件或Web组件,例如输入字段。
这可能与mxGraph一起使用吗?提前谢谢!
答案 0 :(得分:1)
文档需要更新,mxGraph长时间不支持该模式。