Pie chart values inside the pie slice

Is there a way to place the value inside the pie chart slice instead of using the regular legend?

Thank you

Hi @ahaddad,

This can be done with a negative labelRadius value. See the amCharts v3 documentation.

After expanding the script, look for the “// Pie chart” section and add:

json.labelRadius = -50;

Tweak the value as needed.

1 Like

Perfect - Thank you !!!