in chart.js once the user clicks on a portion of the doughnut. Giving a fixed point, which has an angle of 180 degrees, the pie should align itself pointing the clicked section towards that fixed point.
in this case i found one working behaviour pie chart which is created by Highcharts,
my question is can we convert this same behaviour in chart.js with doughnut??
Highcharts link: example
> // expecting this rotation functionality with doughnut chart in chart.js
startAngle: -startAngle + 180 - ((clickPoint.percentage/100.0 * 360.0)/2)