function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Anzeiger', 1], ['Bulletin Inst. Oceanogr. Fish.', 1], ['Bulletin Zool. Surv. India', 1], ['Bulletin of the American Museum of Natural History', 5], ['Bulletin of the Bingham Oceanographic Collection Yale University', 1], ['Colonial Museum and Geological Survey Department', 1], ['Copeia', 1], ['European Journal of Taxonomy', 3], ['F. Schoell', 1], ['Journal of Natural History', 2], ['Journal of Systematic Palaeontology', 6], ['Proceedings of the United States National Museum, 3', 2], ['Records of the Australian Museum', 2], ['Zoologicheskii Zhurnal', 2], ['Zootaxa', 61], ['Other (15)', 15] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=105)', 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);