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

时间:2024-02-24 17:17:20

1:x轴文本字体颜色改变

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

2:y轴文本字体颜色改变

yAxis : [
                    {
                        type : \'value\',
                        name : \'%\',
                        axisLabel : {
                            formatter: \'{value}\',
                            textStyle: {
                                color: \'#fff\'
                            }
                        }
                    }
        ]