function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Entomologica Musei Nationalis Pragae', 10], ['Biodiversity Data Journal', 4], ['Bulletin of the American Museum of Natural History', 1], ['Caucasian Entomological Bulletin', 3], ['Far Eastern Entomologist', 9], ['Garcia de Orta - série de zoologia', 1], ['Insecta Mundi', 6], ['J. Zool. Syst. Evol. Research', 1], ['Journal of Natural History', 5], ['Journal of the Kansas Entomological Society', 1], ['Proceedings of the Entomological Society of Washington', 3], ['Raffles Bulletin of Zoology', 6], ['Zoosystema', 2], ['Zoosystematica Rossica', 3], ['Zootaxa', 19], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=76)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);