dmr 发表于 2024-9-25 16:50:27

echarts x轴或y轴文本字体颜色改变

操作:

xAxis : [
                  {
                        type : 'category',
                        data : ['<30','30-','40-','50-','60-','>=70'],
                        axisLabel: {
                            show: true,
                            textStyle: {
                              color: '#fff'
                            }
                        }
                  }
                ]

yAxis : [
                  {
                        type : 'value',
                        name : '%',
                        axisLabel : {
                            formatter: '{value}',
                            textStyle: {
                              color: '#fff'
                            }
                        }
                  }
      ]
页: [1]
查看完整版本: echarts x轴或y轴文本字体颜色改变