function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Academic Press of Japan', 1], ['Bulletin of the Bingham Oceanographic Collection Yale University', 1], ['Cybium', 1], ['European Journal of Taxonomy', 4], ['Ichthyological Bulletin of the J. L. B. Smith Institute of Ichthyology', 1], ['Megataxa', 7], ['New Zealand Oceanographic Institute Memoir', 2], ['Proceedings of the Biological Society of Washington', 1], ['Proceedings of the California Academy of Sciences, Series 4', 6], ['Proceedings of the United States National Museum, 3', 1], ['Voprosy Ikhtiologii', 1], ['Zootaxa', 13] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=39)', 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);