function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de la Société Entomologique de France, Nouvelle Série', 1], ['Biodiversity Data Journal', 11], ['Far Eastern Entomologist', 1], ['Insects of Micronesia', 1], ['Journal of Natural History', 1], ['Journal of Orthoptera Research', 20], ['Mittheilungen der Schweizer Entomologischen Gessellschaft', 3], ['Proceedings of the Zoological Institute RAS', 1], ['Records of the Zoological Survey of India', 2], ['Revue suisse de Zoologie', 1], ['ZooKeys', 16], ['Zoosystema', 14], ['Zootaxa', 57] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=129)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);