如何更新节点或边的样式

阅读时间约 1 分钟

G6 提供了三种修改节点样式的方法。

实例化 Graph

实例化 Graph 时,可以通过在 defaultNodedefaultEdge 中指定 style 分别配置全局节点和全局边的样式属性。

const graph = new G6.Graph({
  container: 'mountNode',
  width: 1000,
  height: 800,
  defaultNode: {
    shape: 'circle',
    style: {
      fill: '#fff',
      fontSize: 14,
    },
  },
  defaultEdge: {
    shape: 'line-with-arrow',
    style: {
      fill: '#fff',
      fontSize: 14,
    },
  },
});

数据中指定 style

const data = {
  nodes: [
    {
      id: 'node1',
      label: 'node1',
      style: {
        fill: '#fff',
        fontSize: 12,
      },
    },
  ],
};

使用 update / updateItem

使用 update / updateItem 更新节点或边。

graph.updateItem(node, {
  // 节点的样式
  style: {
    stroke: 'blue',
  },
});

想要知道节点都支持哪些属性样式,请参考 节点样式属性