function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Abhandlungen der Bayerischen Akademie der Wissenschaften', 1], ['Acta Zootaxonomica Sinica', 1], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Biol. Results " Endeavour "', 1], ['Bulletin of the Museum of Comparative Zoology at Harvard College, 3', 1], ['European Journal of Taxonomy', 4], ['International Journal of Research Studies in Zoology', 1], ['Israel Journal of Zoology', 1], ['Memoirs of the Queensland Museum', 1], ['Oceanologica et Limnologica Sinica', 1], ['Proceedings of the Zoological Society of London, B', 3], ['Records of the Canterbury Museum', 2], ['Rep. Lab. Fish. Biol. Taiwan', 1], ['Trans. N. Z. Inst.', 1], ['Zootaxa', 32], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=53)', 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);