function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['African Invertebrates', 11], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 2], ['Biodiversity Data Journal', 56], ['Bulletin de la Société Impériale des Naturalistes de Moscou', 2], ['European Journal of Taxonomy', 86], ['Insecta Mundi', 4], ['International Journal of Myriapodology', 10], ['Journal of Natural History', 12], ['Memoirs of the Queensland Museum, Nature', 3], ['Raffles Bulletin of Zoology', 27], ['Records of the Western Australian Museum', 30], ['Revue suisse de Zoologie', 50], ['ZooKeys', 237], ['Zoological Studies', 14], ['Zootaxa', 330], ['Other (9)', 15] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=889)', 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);