function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acarologia', 2], ['Acta Biologica Universitatis Daugavpiliensis', 9], ['Acta Entomologica Musei Nationalis Pragae', 90], ['Bibliopolii Academici Novi', 2], ['Caucasian Entomological Bulletin', 9], ['Caucasiana', 6], ['European Journal of Taxonomy', 6], ['Insecta Mundi', 15], ['Japanese journal of systematic entomology', 4], ['Journal of Natural History', 1], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 1], ['The Coleopterists Bulletin', 13], ['ZooKeys', 23], ['Zoosystema', 7], ['Zootaxa', 36], ['Other (3)', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=227)', 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);