How does the echarts relational node graph display the name field directly?

due to project requirements, the name field of the echarts relational node needs to be displayed directly, not when the mouse is moved into the node. As shown in the figure

is there a configuration that supports the direct display of node name attributes?

the current configuration of echarts is as follows:

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: "-sharp666"
            },
            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
        }
    ]
};
Jan.08,2022

has been resolved, use the following configuration

"label": {
    "show": true
}
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b30407-2bd16.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b30407-2bd16.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?