function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bulletin de la Société Impériale des Naturalistes de Moscou', 1], ['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', 4], ['Insects of Guam I', 1], ['Opuscules entomologiques', 1], ['ZooKeys', 9], ['Zoosystema', 3], ['Zootaxa', 21] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=41)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 8, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);