[Chartjs]-Rotate 90 degrees clockwise the scaleLabel (no ticks or labels) on a Chart.js line chart

2👍

You can get the desired effect by commenting out the line

rotation = isLeft ? -0.5 * Math.PI : 0.5 * Math.PI;

in the source code.

Leave a comment