function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['American Journal of Science', 14], ['American Museum Novitates', 16], ['Aspects of Nonmarine Cretaceous Geology', 11], ['Bulletin of the American Museum of Natural History', 75], ['Contributions to Geology, University of Wyoming', 12], ['Geological Survey of Canada Contributions to Canadian Palaeontology', 14], ['Journal of Vertebrate Paleontology', 26], ['Mesozoic Vertebrate Life', 12], ['National Museum of Natural Sciences, Publications in Palaeontology, No. 1', 11], ['Predatory Dinosaurs of the World', 23], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 27], ['Rocky Mountain Geology', 14], ['Special papers in palaeontology', 53], ['The Dinosauria', 44], ['Zootaxa', 14], ['Other (65)', 198] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=564)', 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);