Chartjs-How do I increase the arrow length on the pie chart in Charts.js?

0👍

It appears that you are using the PieceLabel Plugin .

You should add : arc: true, in order for the labels to be drawn in an arc i.e. the plugin documentation states :

 // draw label in arc, default is false
 // bar chart ignores this
 arc: true,

Leave a comment