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 ', 2], ['Arthropoda Selecta', 2], ['Biodiversity Data Journal', 12], ['Bulletin de la Société Zoologique de France', 1], ['Bulletin of the National Museum of Nature and Science, Series A (Zoology)', 1], ['Caucasian Entomological Bulletin', 1], ['European Journal of Taxonomy', 83], ['Journal of Natural History', 2], ['Journal of Species Research', 5], ['Peckhamia', 2], ['ZooKeys', 42], ['Zoological Journal of the Linnean Society', 7], ['Zoosystema', 4], ['Zoosystematics and Evolution', 13], ['Zootaxa', 189], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=368)', 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);