如何在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

关于javascript - 如何计算在GoJS中动态创建的图表的高度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34892065/

10-09 14:42