如何计算在gojs中动态创建的图表的高度
How do I calculate the height of diagram created dynamically in gojs
如何计算在 gojs 中以编程方式创建的图表的高度。
我有 myDiagram.nodeTemplate,然后是 myDiagram.groupTemplate
我得到 myDiagram.actualBounds 未定义。
myDiagram.outerBounds 未定义身高。
我知道计算后我必须打电话给:
var div = diagram.div;
div.style.width = 'I need to calculate this!!!';
diagram.requestUpdate();
但是我不知道我的图表的宽度。
谁能帮忙。
您最有可能想要Diagram.documentBounds.width
。
你看过吗:http://forum.nwoods.com/t/is-it-possible-to-have-dynamic-height-on-canvas/6450
如何计算在 gojs 中以编程方式创建的图表的高度。
我有 myDiagram.nodeTemplate,然后是 myDiagram.groupTemplate
我得到 myDiagram.actualBounds 未定义。 myDiagram.outerBounds 未定义身高。
我知道计算后我必须打电话给:
var div = diagram.div;
div.style.width = 'I need to calculate this!!!';
diagram.requestUpdate();
但是我不知道我的图表的宽度。
谁能帮忙。
您最有可能想要Diagram.documentBounds.width
。
你看过吗:http://forum.nwoods.com/t/is-it-possible-to-have-dynamic-height-on-canvas/6450