我试图根据给定的特定值更改highcharts中系列的颜色。该代码适用于除[0]之外的数组中的所有其他对象。不确定我做错了什么?
这是我的代码:
formatter: function () {
if (op_model == "0") {
chart = $('#container2').highcharts();
var series = chart.series[0].color = ("blue");
return (this.series.name + " " + this.y + "%" + "<br />" + "Your chosen model");
}
else return (this.series.name + " " + this.y + "%");
}
答案 0 :(得分:0)
解决方案:
color: op_model == 0 ? 'blue' : null
对于系列,应突出显示。