arun
arun

Reputation: 319

Google Pie Chart Legend type Labeled Showing Percentage

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"                                    
 },

enter image description here

Upvotes: 2

Views: 3935

Answers (1)

Anto Jurković
Anto Jurković

Reputation: 11258

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.

Upvotes: 3

Related Questions