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

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

phic 发布于 2019-11-05 • 在 gojs • 最后更新 2019-11-05 18:23 • 18 浏览

我如何将一个背景图片添加到GoJS图表中? 当我拖动或缩放图时,背景图应该移动并相应地缩放。 背景图像应该在关联的Overview diagram中可见。 有没有简单的(或不那么简单)的方法来实现这一点?

et_sed 2019-11-05

如果你想要它移动和缩放等,那么只需将它作为单独的部件添加,就像在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

posted on 2023-02-10 11:23  漫思  阅读(45)  评论(0编辑  收藏  举报

导航