function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Alexander Koenig Zoological Research Institute and Zoological Museum', 2], ['Bonn Zoological Bulletin', 6], ['Bonner Zoologische Monographien', 1], ['Bulletin of the American Museum of Natural History', 21], ['Geodiversitas', 3], ['Handbook of the Mammals of the World – Volume 8 Insectivores, Sloths and Colugos', 198], ['Mammal Species of the World (1 st Edition)', 150], ['Mammal Species of the World (2 nd Edition)', 152], ['Mammal Species of the World: a Taxonomic and Geographic Reference (3 rd Edition), Volume 1', 199], ['Mammalia', 4], ['ZooKeys', 4], ['Zoological Journal of the Linnean Society', 3], ['Zoological Systematics', 2], ['Zoosystema', 6], ['Zootaxa', 43], ['Other (4)', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=798)', 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);