function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Beiträge Zur Entomologie = Contributions to Entomology', 7], ['Biodiversity Data Journal', 50], ['Bulletin of the National Museum of Nature and Science, Series A (Zoology)', 1], ['Bulletin of the National Science Museum, Series A (Zoology)', 25], ['Contributions to Entomology', 1], ['Deutsche Entomologische Zeitschrift', 1], ['Entomologische Berichte Luzern', 2], ['Japanese Journal of Systematic Entomology', 3], ['Linzer biologische Beiträge', 36], ['Palaeoentomology', 3], ['Proceedings of the Japanese Society of Systematic Zoology', 1], ['Species Diversity', 5], ['Zootaxa', 102] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=237)', 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);