A builder for pie charts. For more details, see the Google Charts documentation.
Here is an example that shows how to build a pie chart. The data is imported from a Google spreadsheet.
// Get sample data from a spreadsheet.
var dataSourceUrl = 'https://docs.google.com/spreadsheet/tq?range=A1%3AB8' +
'&key=0Aq4s9w_HxMs7dHpfX05JdmVSb1FpT21sbXd4NVE3UEE&gid=3&headers=-1';
var chartBuilder = Charts.newPieChart()
.setTitle('World Population by Continent')
.setDimensions(600, 500)
.set3D()
.setDataSourceUrl(dataSourceUrl);
var chart = chartBuilder.build();
A builder for pie charts. For more details, see the Google Charts documentation.
Here is an example that shows how to build a pie chart. The data is imported from a Google spreadsheet.