[Chartjs]-Chartjs: trying to rotate the y-Axis label

1👍

You can rotate the Y-axis in Chart.js 2.0 with the tick property. There’s a link here.

yAxes: [{
  ticks : {
    minRotation : 90
  }
}]

Fiddle here: https://jsfiddle.net/acmfk5p8/

There’s a duplicate question here but it doesn’t have an answer yet either.

Leave a comment