function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Beschäftigungen der Berlinischen Gesellschaft Naturforschender Freunde', 1], ['Biodiversity Data Journal', 3], ['European Journal of Taxonomy', 1], ['Geodiversitas', 1], ['Johan. Christi. Trappii', 1], ['Journal of Natural History', 18], ['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], ['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', 6], ['ZooKeys', 7], ['Zootaxa', 10], ['Other (4)', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=95)', 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);