Percentage is not showing in Dojo Pie Chart?

269 Views Asked by At

After applying text values in dojo pie chart , I am unable to see percentage in the slice. But without text values, its showing as percentage as default. How can I get both text and percentage?

    chartData.push({
                        y : count,
                        text:"My Label1",
                        tooltip : "My Label1 : " + count,
                        color : "blue"
                    });
1

There are 1 best solutions below

0
On

Yes but unfortunately then you need to compute it yourself and add it to the text it won't be automatic anymore. Something like the following:

chartData.push({ 
   // ...
   text: "My Labels1: "+(value/total)+"%"
});