GoJS:如何将背景图像添加到图表中

时间:2017-11-02 15:24:52

标签: gojs

如何将背景图像添加到GoJS图表中? 当我拖动或缩放图表时,背景图像应相应地移动和缩放。

背景图片也应该在关联的Overview diagram中可见。

是否有一种简单(或不那么简单)的方式来实现这一目标?

1 个答案:

答案 0 :(得分:1)

如果您想要它移动和缩放等,那么只需将其作为单独的部件添加,就像在Floor Monitor中一样:

  // the background image, a floor plan
  myDiagram.add(
    $(go.Part,  // this Part is not bound to any model data
      { layerName: "Background", position: new go.Point(0, 0),
        selectable: false, pickable: false },
      $(go.Picture, "https://upload.wikimedia.org/wikipedia/commons/9/9a/Sample_Floorplan.jpg")
    ));

https://gojs.net/latest/samples/kittenMonitor.html