function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Beiträge Zur Entomologie = Contributions to Entomology', 34], ['Biodiversity Data Journal', 72], ['Entomo Helvetica', 104], ['European Journal of Taxonomy', 210], ['Far Eastern Entomologist', 133], ['Journal of Natural History', 29], ['Linzer biologische Beiträge', 35], ['Revue suisse de Zoologie', 51], ['Sborník Severočeského Muzea', 210], ['Schultz-Wundermann', 162], ['Tijdschrift voor Entomologie', 28], ['Vestnik Zoologii', 32], ['ZooKeys', 257], ['Zoological Journal of the Linnean Society', 174], ['Zootaxa', 2106], ['Other (65)', 248] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=3885)', 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);