function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Arthropoda Selecta', 1], ['Bulletin de la Société Impériale des Naturalistes de Moscou', 1], ['European Journal of Taxonomy', 3], ['F. G. Levrault', 1], ['Journal of Natural History', 10], ['Nauplius', 4], ['Proceedings of the Zoological Society of London', 3], ['Records of the Australian Museum', 14], ['Revue suisse de zoologie', 3], ['Tropical Zoology', 2], ['ZooKeys', 2], ['Zoological Journal of the Linnean Society', 8], ['Zoological Systematics', 3], ['Zoosystema', 39], ['Zootaxa', 6], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=101)', 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);