function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 6], ['Bulletin of the Florida Museum of Natural History', 1], ['Bulletin of the United States National Museum', 7], ['F. G. Levrault', 5], ['Journal de Physique, de Chimie, d\'Histoire Naturelle et des Arts', 3], ['Journal of the Academy of Natural Sciences of Philadelphia', 1], ['Journal of the Academy of Natural Sciences of Philadelphia, Second Series', 6], ['Occasional Papers of the Museum of Zoology, University of Michigan', 1], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 11], ['Proceedings of the American Philosophical Society', 4], ['Proceedings of the Oklahoma Academy of Science', 2], ['Proceedings of the United States National Museum, 3', 2], ['Raffles Bulletin of Zoology', 1], ['The Pacific', 2], ['Zootaxa', 6], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=59)', 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);