[Chartjs]-Changing color of specific chartjs point

2👍

You can use

customizePoint 

callback.

$("#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' } };
        }
    },
    ....
}

});

You can find find documentation and demo

Leave a comment