function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 7], ['European Journal of Taxonomy', 4], ['Geodiversitas', 10], ['Journal of Natural History', 15], ['Laurentius Salvius', 24], ['Mémoires du Muséum national d\'Histoire naturelle', 129], ['Papéis Avulsos de Zoologia', 11], ['Proceedings of the Zoological Society of London', 6], ['The Bulletin of the Russian Far East Malacological Society', 15], ['Transactions of the Royal Society of New Zealand, Zoology', 4], ['ZooKeys', 40], ['Zoological Journal of the Linnean Society', 14], ['Zoosystema', 5], ['Zoosystematics and Evolution', 28], ['Zootaxa', 131], ['Other (21)', 29] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=472)', 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);