function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Beschäftigungen der Berlinischen Gesellschaft Naturforschender Freunde', 1], ['Biodiversity Data Journal', 1], ['Journal of Natural History', 1], ['K. K. Hof-naturalien-cabinet', 1], ['Korean Journal of Malacology', 1], ['Laurentius Salvius', 16], ['Memoirs of the College of Science, Kyoto Imperial University, Series B', 3], ['Quarterly Journal of the Geological Society, London', 3], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 8], ['Skinner and Co.', 1], ['The Bulletin of the Russian Far East Malacological Society', 2], ['Transactions of the geological society of London, 2', 1], ['Zootaxa', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=40)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);