gpt4 book ai didi

chart.js - 更改特定图表点的颜色

转载 作者:行者123 更新时间:2023-12-02 19:30:43 29 4
gpt4 key购买 nike

是否可以使用 dx ChartJS 更改特定点的颜色?我知道如何更改整个系列的点颜色,但我找不到任何有关更改特定点的信息。

最佳答案

你可以使用

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' } };
}
},
....
}

});

您可以找到documentationdemo

关于chart.js - 更改特定图表点的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24896562/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com