Change the Google Charts subtitle line

2

I'm currently using the Google API to generate some graphs, but I noticed that when there are small percentages, eg 0.94%, 1.2%, it makes reading the labels a bit confusing, "one in top of the other ". Is it possible to change the "Path" line of the chart? To make it look like Highcharts:

    
asked by anonymous 17.03.2016 / 17:39

1 answer

1

I do not know if I understand what you want. To display small values in the pie chart use: sliceVisibilityThreshold: 0 , in options .

Example:

var options = {
   fontSize: 11,
   backgroundColor: 'transparent',
   width: "100%",
   sliceVisibilityThreshold: 0,
   legend: { textStyle: { fontSize: 12 } },
   pieHole: 0.60,
   height: 400,
};
    
09.09.2016 / 17:01