改变特定chartjs的颜色点

时间:2014-07-22 19:50:06

标签: chart.js

是否可以使用dx chartjs更改特定的点颜色? 我知道如何改变整个系列的点颜色,但我找不到任何改变特定点的东西。

1 个答案:

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

});

您可以找到documentationdemo