[Chartjs]-Chartjs custom y axis values, different text for each one

3👍

Try to return value from the array properly,

callback:function(value) { 
  var x = ["January", "February", "March", "April", "May", "June", "July"];
  return x[value | 0];                  
}

DEMO

Leave a comment