function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals of Natural History; or, Magazine of Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany and Zoo', 1], ['Fossil Imprint', 1], ['Gottl. August. Lange', 3], ['Handbook of the Mammals of the World – Volume 9 Bats', 2], ['J. G. Cotta\'schen Buchhandlung', 1], ['Laurentius Salvius', 8], ['Mammal Species of the World (1 st Edition)', 4], ['Mammal Species of the World (2 nd Edition)', 3], ['Mammal Species of the World: a Taxonomic and Geographic Reference (3 rd Edition), Volume 1', 5], ['P. van Cleef', 1], ['Zootaxa', 34] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=63)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);