function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Beschäftigungen der Berlinischen Gesellschaft Naturforschender Freunde', 1], ['Biodiversity Data Journal', 3], ['Contributions to Zoology', 1], ['European Journal of Taxonomy', 1], ['Geodiversitas', 1], ['International Journal of Fisheries and Aquatic Studies', 1], ['Johan. Christi. Trappii', 1], ['Journal of Natural History', 18], ['Laurentius Salvius', 16], ['Memoirs of the College of Science, Kyoto Imperial University, Series B', 3], ['Records of the Zoological Survey of India', 14], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 8], ['The Bulletin of the Russian Far East Malacological Society', 8], ['ZooKeys', 7], ['Zootaxa', 10], ['Other (6)', 6] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=99)', 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);