I want to create a pie chart with chartist.js with labels (which are shown in the legend) AND also with percentages in the pie itself.
This is the pie chart. I want to add percentage values to the pieces. https://i.sstatic.net/SiIKb.png
Here (https://gionkunz.github.io/chartist-js/examples.html) is an example with percentages in the pie. But this only works if I do NOT add labels.
Adding labels to the data (e.g. labels: ['Dog','Cat','Cow','Snake',],) results in "NaN%" display.
I want to see the percentages in the pie itself and also put labels (for the legend) into the data.
Is this possible?