是否可以使用dx chartjs更改特定的点颜色? 我知道如何改变整个系列的点颜色,但我找不到任何改变特定点的东西。
答案 0 :(得分:2)
您可以使用
customizePoint
回调函数。
$("#container").dxChart({
dataSource: dataSource,
...
customizePoint: function() {
if(this.value > highAverage) {
return { color: '#ff4500', hoverStyle: { color: '#ff4500' } };
} else if(this.value < lowAverage) {
return { color: '#00ced1', hoverStyle: { color: '#00ced1' } };
}
},
....
}
});
您可以找到documentation和demo