function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Ichthyologica et Piscatoria', 1], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Biological Bulletin Department of Biology College of Science, Tunghai University, Ichthyology Series', 1], ['Bulletin of the United States National Museum', 2], ['European Journal of Taxonomy', 1], ['F. J. Belanfante', 1], ['Notulae Naturae', 2], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 3], ['Proceedings of the Biological Society of Washington', 2], ['Records of the Australian Museum', 1], ['Videnskabelige Meddelelser frå Dansk Naturhistorisk Forening', 1], ['Zoologica', 1], ['Zootaxa', 22] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=39)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);