echarts关系节点图怎么直接显示name字段?

由于项目需求,需要直接显示echarts关系节点的name字段,而非鼠标移入节点的时候才显示。如图:

图片描述

是否有支持直接显示节点name属性的配置呢?

目前echarts的配置如下:

option = {
    legendHoverLink: false,
    tooltip: {
        show: true,
        formatter: '{b0}'
    },
    legend: {
        data: [
            {
                name: '文件',
                icon: "image://../image/file.png"
            }, {
                name: '文件块',
                icon: "image://../image/chunk.png"
            }, {
                name: '节点',
                icon: "image://../image/node.png"
            }
        ]
    },
    series: [
        {
            type: 'graph',
            layout: 'force',
            animation: false,
            edgeSymbol: [
                'none', 'arrow'
            ],
            label: {
                show: false,
                position: 'bottom',
                color: "#666"
            },
            symbolSize: 60,
            draggable: true,
            data: webkitDep
                .nodes
                .map(function (node, idx) {
                    node.id = idx;
                    return node;
                }),
            categories: webkitDep.categories,
            force: {
                initLayout: 'circular',
                repulsion: 2000,
                edgeLength: 300

            },
            edges: webkitDep.links
        }
    ]
};
阅读 7.5k
1 个回答

已解决,使用下面配置即可

"label": {
    "show": true
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题