function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 6], ['Birkhaeuser Verlag', 2], ['Geodiversitas', 1], ['Journal of Natural History', 2], ['Journal of the Academy of Natural Sciences of Philadelphia', 3], ['Journal of the Faculty of Science, Niigata University, Series II, Biology, Geology and Mineralogy', 1], ['K. K. Hof-naturalien-cabinet', 1], ['Quarterly Journal of the Geological Society, London', 1], ['Records of the Zoological Survey of India', 5], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 8], ['Schultz', 1], ['The American Journal of Science, Series 3', 1], ['The Bulletin of the Russian Far East Malacological Society', 4], ['U. S. Geological Survey, Professional Paper', 2], ['Zootaxa', 23], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=63)', 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);