Google Pie Chart Legend type Labeled Showing Perce

2019-07-24 00:18发布

问题:

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

回答1:

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.