function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annotationes Zoologicae Japonenses', 3], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 1], ['Bulletin of the Vanderbilt Marine Museum', 1], ['E. J. Brill', 1], ['European Journal of Taxonomy', 2], ['Journal of Systematic Palaeontology', 1], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 1], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 2], ['Raffles Bulletin of Zoology', 3], ['The Journal of the College of Science, Imperial University of Tokyo', 1], ['Trans. Proc. N. Z. Inst.', 1], ['Zootaxa', 54] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=71)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 12, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);