在 ECharts 的极坐标(polar)配置中,可以使用 axisPointer 中的 label 属性来设置坐标轴指示器标签的文字样式。以下是一个简单的例子,演示如何设置坐标轴指示器标签的文字样式:
option = {
    polar: {
        center: ['50%', '50%'],
        radius: '80%'
    },
    tooltip: {
        trigger: 'axis',
        axisPointer: {
            type: 'cross',
            label: {
                show: true,
                precision: 2,
                formatter: function(params) {
                    return params.value;
                },
                textStyle: {
                    color: 'red', // 标签文字颜色
                    fontSize: 14,   // 标签文字大小
                    fontWeight: 'bold'  // 标签文字粗细
                    // 其他文字样式属性
                }
            }
        }
    },
    angleAxis: {
        type: 'value',
        startAngle: 0
    },
    radiusAxis: {
        min: 0
    },
    polar: {
        center: ['50%', '50%'],
        radius: '80%'
    },
    series: [{
        type: 'bar',
        data: [2, 1, 3, 4],
        coordinateSystem: 'polar',
        name: 'A',
        stack: 'a'
    }, {
        type: 'bar',
        data: [5, 1, 2, 6],
        coordinateSystem: 'polar',
        name: 'B',
        stack: 'a'
    }, {
        type: 'bar',
        data: [1, 2, 3, 4],
        coordinateSystem: 'polar',
        name: 'C',
        stack: 'a'
    }],
    indicator: [
        { text: '指示器1', max: 5 },
        { text: '指示器2', max: 5 },
        { text: '指示器3', max: 5 },
        { text: '指示器4', max: 5 }
    ]
};

在上述例子中,通过在 label 属性中的 textStyle 来设置文字样式,包括颜色、大小、粗细等。你可以根据需要调整这些属性以满足你的设计需求。


转载请注明出处:http://www.zyzy.cn/article/detail/5232/ECharts