如何在gojs中以编程方式计算图表的高度。
我有myDiagram.nodeTemplate,然后是myDiagram.groupTemplate
我将myDiagram.actualBounds视为未定义。 myDiagram.outerBounds的高度未定义。
我知道一旦计算,我必须打电话:
var div = diagram.div;
div.style.width = 'I need to calculate this!!!';
diagram.requestUpdate();
但我不知道我的图是什么宽度。
任何人都可以帮忙。
答案 0 :(得分:3)
您最想要Diagram.documentBounds.width
。
你见过:http://forum.nwoods.com/t/is-it-possible-to-have-dynamic-height-on-canvas/6450