function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['American Museum Novitates', 17], ['Bulletin of the American Museum of Natural History', 4], ['Check List', 6], ['European Journal of Taxonomy', 9], ['Fossil Imprint', 10], ['Geodiversitas', 109], ['Handbook of the Mammals of the World – Volume 2 Hoofed Mammals', 19], ['Laurentius Salvius', 7], ['Mammal Species of the World (1 st Edition)', 28], ['Mammal Species of the World (2 nd Edition)', 24], ['Mammal Species of the World: a Taxonomic and Geographic Reference (3 rd Edition), Volume 1', 61], ['Neues Jahrbuch für Geologie und Paläontologie-Abhandlungen', 5], ['Proceedings of the Zoological Society of London', 6], ['Zoological Journal of the Linnean Society', 11], ['Zootaxa', 37], ['Other (19)', 33] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=386)', 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);