graph 当节点数目很多时,节点label颜色非常淡,是不是内部有什么问题要解决echarts graph配置项内容和展示

这个graph图有1500个节点,2500左右的边,这个时候当鼠标移到点上去的时候,节点label颜色非常淡。但是当变量nodeNum,linkNum改为500,600左右时,节点的label会变更清晰。请问各位道友怎么解决?可以尝试一下改变代码里面的nodeNum,linkNum变量

配置项如下
      myChart.showLoading();
    myChart.hideLoading();

    var categories = [];
    for (var i = 0; i < 9; i++) {
        categories[i] = {
            name: '类目' + i
        };
    }
    var graph = {
        nodes:[],
        links:[]
    }
    var nodeNum = 1500;
    var linkNum = 2600;
    for(i=0;i<nodeNum;i++){
        graph.nodes.push({
            x: Math.random() * 1000,
            y: Math.random() * 1000,
            name: 'test' + i
        })
    }
    for(i=0;i<linkNum;i++){
        graph.links.push({
            source: parseInt(Math.random() * nodeNum),
            target: parseInt(Math.random() * nodeNum),
        })
    }
    option = {
        title: {
            text: 'Les Miserables',
            subtext: 'Default layout',
            top: 'bottom',
            left: 'right'
        },
        tooltip: {},
        legend: [{
            // selectedMode: 'single',
            data: categories.map(function (a) {
                return a.name;
            })
        }],
        animationDuration: 1500,
        animationEasingUpdate: 'quinticInOut',
        series : [
            {
                name: 'Les Miserables',
                type: 'graph',
                layout: 'none',
                data: graph.nodes,
                links: graph.links,
                categories: categories,
                roam: true,
                focusNodeAdjacency: true,
                itemStyle: {
                    normal: {
                        borderColor: '#fff',
                        borderWidth: 1,
                        shadowBlur: 10,
                        shadowColor: 'rgba(0, 0, 0, 0.3)'
                    }
                },
                label: {
                    position: 'right',
                    formatter: '{b}'
                },
                lineStyle: {
                    color: 'source',
                    curveness: 0.3
                },
                emphasis: {
                    lineStyle: {
                        width: 10
                    }
                }
            }
        ]
    };

    myChart.setOption(option);
    
截图如下