function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Copeia', 2], ['Dana Reports', 7], ['Discovery Reports', 1], ['European Journal of Taxonomy', 2], ['Japanese Journal of Zoology', 1], ['Naturhistorisk Tidsskrift, Series 3', 1], ['Neotropical Ichthyology', 3], ['Proceedings of the New England Zoölogical Club', 4], ['Proceedings of the United States National Museum, 3', 1], ['Report on the Scientific Results of the Voyage of H. M. S. “ Challenger ” during the Years 1873 - 76 under the Command of Captai', 1], ['Scientific Results of the M. Sars North Atlantic Deep-Sea Expedition 1910', 1], ['The Journal of the College of Science, Imperial University of Tokyo', 1], ['Voprosy Ikhtiologii', 1], ['Zootaxa', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=31)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);