[Chartjs]-Custom data position on the doughnut chart in chart.js

2👍

Experiment with the rotation option:

options: {
    rotation: -0.5 * Math.PI
}

The value used above (-0.5 * Math.PI) is the default value. A value of 0 will rotate the doughnut 90° clockwise. You need a value between 0.5 * Math.PI and 1.0 * Math.PI in your case. More at the docs.

Leave a comment