function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acarologia', 7], ['Beiträge Zur Entomologie = Contributions to Entomology', 1], ['Insecta Mundi', 1], ['Pan-Pac Ent', 1], ['Parasites & Vectors', 1], ['Parasitology Open', 1], ['Persian Journal of Acarology', 16], ['Transactions and proceedings of the New Zealand Institute', 1], ['ZooKeys', 3], ['Zootaxa', 578] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=610)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 10, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);