function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Bulletin of the Toyama Science Museum', 1], ['Caucasiana', 2], ['European Journal of Taxonomy', 21], ['Journal of Natural History', 26], ['Nauplius', 19], ['Organisms Diversity and Evolution', 2], ['Papéis Avulsos de Zoologia', 6], ['Proceedings of the Zoological Society of London', 2], ['Tropical Zoology', 2], ['ZooKeys', 16], ['Zoological Journal of the Linnean Society', 13], ['Zoological journal of the Linnean Society', 4], ['Zoosystema', 14], ['Zootaxa', 26], ['Other (4)', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=159)', 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);