0
請告訴我。 如何使用類別更改特定題字的標籤顏色在軸線(categoryAxis.categories = [「2016」,「2017」])如何更改標籤顏色(categoryAxis.categories)?
請告訴我。 如何使用類別更改特定題字的標籤顏色在軸線(categoryAxis.categories = [「2016」,「2017」])如何更改標籤顏色(categoryAxis.categories)?
可以使用categoryAxis.labels的visual property控制如何標籤看。
categoryAxis: {
categories: [1952, 1956, 1960, 1964, 1968, 1972, 1976, 1984, 1988, 1992, 1996, 2000, 2004, 2008, 2012],
labels: {
visual: function(e) {
var l = e.createVisual();
if (e.text == '1968' || e.text == '2000'){
l.children[0].options.fill.color = "#ff0000";
}
return l;
}
}
},