function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['American Museum Novitates', 9], ['Comptes Rendus Hebdomadaires des Séances de l\'Académie des Sciences', 1], ['Fossil Imprint', 2], ['Geodiversitas', 17], ['Handbook of the Mammals of the World – Volume 3 Primates', 160], ['London Medical Repository', 1], ['Mammal Species of the World (1 st Edition)', 88], ['Mammal Species of the World (2 nd Edition)', 102], ['Mammal Species of the World: a Taxonomic and Geographic Reference (3 rd Edition), Volume 1', 262], ['Mammalian Species', 3], ['Plassan', 1], ['Raffles Bulletin of Zoology', 1], ['Zoological Research', 3], ['Zoosystema', 4], ['Zootaxa', 3], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=658)', 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);