function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acarologia', 64], ['Acta Zoologica Academiae Scientiarum Hungaricae', 1], ['Annales zoologici', 3], ['Bulletin of the British Museum (Natural History), Zoology Series', 1], ['Entomologisk Tidskrift', 3], ['Genus', 15], ['Hornmilben (Oribatida) [Dahl, Tierwelt Deutschlands, Teil 76]', 11], ['Journal of Natural History', 4], ['New Zealand Journal of Science', 1], ['New Zealand journal of zoology', 3], ['Proceedings of the Hawaiian Entomological Society', 1], ['Systematic & Applied Acarology', 1], ['Zoologische Verhandelingen', 5], ['Zootaxa', 172] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=285)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);