在 ECharts 中,你可以通过 nameTextStyle 属性来配置 x 坐标轴名称的文本样式。以下是一个例子:
option = {
    xAxis: {
        type: 'category',
        data: ['类目1', '类目2', '类目3'],
        name: 'X轴名称',
        nameTextStyle: {
            color: 'blue',  // 文本颜色
            fontSize: 14,   // 文本字号
            fontWeight: 'bold'  // 文本粗细
            // 其他样式属性...
        }
    },
    yAxis: {
        type: 'value',
        name: 'Y轴名称'
    },
    series: [{
        type: 'bar',
        data: [10, 20, 15]
    }]
};

在上述代码中,nameTextStyle 中的属性包括 color(颜色)、fontSize(字号)、fontWeight(粗细)等,你可以根据需要进行调整。当然,还有其他样式属性可以设置,具体取决于你的需求。




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