function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acarologia', 11], ['Acarological Studies', 35], ['Linzer biologische Beiträge', 1], ['Persian Journal of Acarology', 18], ['Redia', 2], ['Species Diversity', 29], ['Veröffentlichungen des Instituts für Meeresforschung Bremerhaven', 6], ['ZooKeys', 5], ['Zoological Science', 3], ['Zootaxa', 97] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=207)', 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);