function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['American Museum Novitates', 6], ['Bulletin of the American Museum of Natural History', 8], ['Bulletin of the Florida Museum of Natural History', 3], ['Check List', 13], ['Geodiversitas', 24], ['Handbook of the Mammals of the World – Volume 1 Carnivores', 58], ['Laurentius Salvius', 10], ['Mammal Species of the World (1 st Edition)', 87], ['Mammal Species of the World (2 nd Edition)', 95], ['Mammal Species of the World: a Taxonomic and Geographic Reference (3 rd Edition), Volume 1', 224], ['Mammalian Species', 4], ['Proceedings of the Zoological Society of London', 2], ['Zoological Journal of the Linnean Society', 15], ['Zoosystema', 3], ['Zootaxa', 28], ['Other (15)', 16] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=596)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);