function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Zoologica Academiae Scientiarum Hungaricae', 6], ['African Invertebrates', 7], ['African invertebrates', 1], ['Arthropod Systematics & amp; Phylogeny', 13], ['Beiträge Zur Entomologie = Contributions to Entomology', 1], ['Entomo Helvetica', 3], ['Journal of Natural History', 7], ['Journal of the Proceedings of the Linnean Society of London, Zoology', 1], ['Linzer biologische Beiträge', 3], ['Regio typographeo scholarum', 1], ['ZooKeys', 7], ['Zoosystema', 4], ['Zootaxa', 181] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=235)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);