function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Cahiers O. R. S. T. O. M. [Office de la Recherche Scientifique et Technique Outre-Mer] Série Océanographie', 1], ['Contributions in Science of the Natural History Museum of Los Angeles County', 3], ['Copeia', 1], ['European Journal of Taxonomy', 6], ['Memoirs of the Carnegie Museum', 1], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 1], ['Report of the Fisheries and Marine Biological Survey, Union of South Africa', 1], ['Stanford Ichthyological Bulletin', 1], ['Voprosy Ikhtiologii', 1], ['Zoologicheskii Zhurnal', 1], ['Zootaxa', 8] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=26)', 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);