当单元格作为嵌入元素添加时,其x和y值仍然相对于纸张而不是父纸张。有没有办法使用相对坐标?如果没有,任何关于如何实现它的暗示?
感谢
答案 0 :(得分:0)
您可以在position
上使用dia.Element
方法:
childCell.position({parentRelative: true})
它相对于它的父母
或者您可以使用point.difference
相对于任意点计算位置。在这种情况下,您将获得cell
与referenceCell
的相对位置:
var point = g.Point(referenceCell.get('position'))
.difference(cell.get('position'))