How can I add this tick color in chart js y axis. I am using version 2.9.4
I have tried like below way but no any impact.
xAxes: [{
barThickness: 65, // number (pixels) or 'flex'
gridLines: {
zeroLineColor: '#000',
borderDash: [8, 4],
},
ticks: {
fontColor: "black",
fontSize: 14,
fontStyle: "bold",
tickColor: 'red'
},
grid: {
tickColor: '#000'
},
}],