我想用 Echarts 格式化我的图表的轴标签,周末的格式化程序日期为粗体,我尝试了这段代码,但我不知道为什么它不起作用:
xAxis: [{
type: 'category',
data: day,
inverse: false,
splitArea: {
show: true
},
axisLabel: {
textStyle: {
color: function (value, index) {
var d = moment(value).weekday(), index;
return (d == 0 || d == 6) ? 'red' : 'black';
}
},
formatter: (function(value, index){
var m = moment(value).format("DD/MM"), index;
return m;
}),
fontWeight: function (value, index) {
var n = moment(value).weekday(), index;
return (n == 0 || n == 6) ? 'bold' : 'normal';
}
},
}]
请帮忙!!!