function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['American Museum Novitates', 38], ['Bulletin of the American Museum of Natural History', 302], ['Check List', 12], ['Geodiversitas', 14], ['Handbook of the Mammals of the World – Volume 5 Monotremes and Marsupials', 105], ['Journal of Mammalogy', 2], ['Laurentius Salvius', 6], ['Mammal Species of the World (2 nd Edition)', 80], ['Mammal Species of the World: a Taxonomic and Geographic Reference (3 rd Edition), Volume 1', 150], ['Mémoires du Muséum National d’Histoire Naturelle, Série A, Zoologie', 6], ['Palaeontologia Electronica', 3], ['Weygand', 3], ['ZooKeys', 3], ['Zoological Journal of the Linnean Society', 16], ['Zootaxa', 31], ['Other (16)', 17] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=788)', 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);