How to Show The value instead of percentage Legend Type Labeled google pie chart i want show percentage in below completed instead of 100% have to show 1
legend: {
position: 'labeled',
pieSliceText:"value"
},
How to Show The value instead of percentage Legend Type Labeled google pie chart i want show percentage in below completed instead of 100% have to show 1
legend: {
position: 'labeled',
pieSliceText:"value"
},
legend
option has no property pieSliceText
. pieSliceText
is option of whole pie chart. It seems that there is no option to turn off % in legend but you can turn off legend completely using:
legend: {
position: 'none'
}
and build your own. How it is done is described in answer of How to add Percentage and Total on the Legend of Google Pie Charts. You can show your own text with additional information and styling.