function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Arachnologica', 1], ['Arachnology Letters', 1], ['Biodiversity Data Journal', 15], ['Caucasian Entomological Bulletin', 1], ['Far Eastern Entomologist', 1], ['Journal of Natural History', 1], ['Proceedings of the Japanese Society of Systematic Zoology', 1], ['Raffles Bulletin of Zoology', 1], ['UPLB Museum Publications in Natural History', 2], ['ZooKeys', 9], ['Zoological Studies', 2], ['Zoological Systematics', 14], ['Zoology in the Middle East', 2], ['Zoosystema', 4], ['Zootaxa', 27], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=83)', 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);