function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['American Museum Novitates', 3], ['Annalen des Naturhistorischen Museums in Wien', 2], ['Annales du Musee Royale de l\'Afrique Centrale, Zoologie, Serie 8', 1], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 4], ['Arthropoda', 1], ['Boletim do Museu Nacional Rio de Janeiro, Zoologia', 1], ['Bollettino dei Musei di Zoologia ed Anatomia Comparata della R. Università di Torino', 1], ['Bollettino del Laboratorio di Zoologia Generale ed Agraria del R. Scuola d\'Agricultura di Portici', 1], ['Bulletin of the American Museum of Natural History', 1], ['Bulletin of the Institute of Jamaica, Science Series', 1], ['Feuille des Jeunes Naturalistes', 1], ['Journal of Arachnology', 2], ['Proceedings of the California Academy of Sciences, Series 4', 5], ['Zoological Systematics', 2], ['Zootaxa', 11], ['Other (10)', 10] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=47)', 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);