level 1
Chart.on('click', function(param) {
//点击柱状图使对应的x轴的文字变色
Chart.setOption({
yAxis : [
{
axisLabel: {
textStyle: {
color: function(value, index) {
return index == param.dataIndex ? '
#035ef7': '#
454545';
},
}
}
}
],
});
});
2018年01月24日 08点01分

