function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Biologica Universitatis Daugavpiliensis', 3], ['Archiv für Naturgeschichte, Abteilung A', 1], ['Biodiversity Data Journal', 9], ['Christ. Gottl. Proft', 1], ['Entomo Helvetica', 3], ['European Journal of Taxonomy', 6], ['Insecta Mundi', 8], ['Linzer biologische Beiträge', 5], ['Neuestes Magazin für die Liebhaber der Entomologie / Schneider', 1], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 1], ['Systematic Entomology', 1], ['The Coleopterists Bulletin', 2], ['Transactions of the Entomological Society of London', 1], ['ZooKeys', 16], ['Zootaxa', 12] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=70)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);