我在 highcharts api 文档中找不到每个轴的颜色值。换句话说,我的意思是改变每个轴左/下侧的数字颜色。
目前Axis的配置是这样的:
xAxis: {
lineColor: '#d8efe3',
labels: {
formatter: function() {
return this.value; // clean, unformatted number for year
}
}
},
yAxis: {
lineColor: '#d8efe3',
gridLineColor: '#d8efe3',
title: {
text: null
},
labels: {
formatter: function() {
return this.value / 1000 +'k';
}
}
},
编辑:图表没有什么特别之处,无论如何假设图表就像这个一样简单:http: //jsfiddle.net/highcharts/llexl/