function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Biologica Universitatis Daugavpiliensis', 9], ['Beiträge Zur Entomologie = Contributions to Entomology', 49], ['Extract from \' Mémoires présentés à l\'Académie impériale des Sciences de St. Petersbourg t. 1 \' printed separately the year befo', 1], ['Insecta Mundi', 11], ['Insects of Guam I', 2], ['Journal of Insect Science', 1], ['Linzer biologische Beiträge', 47], ['Vestnik Zoologii', 5], ['ZooKeys', 89], ['Zoodiversity', 11], ['Zoosystema', 3], ['Zootaxa', 75] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=303)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 12, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);