function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acarologia', 4174], ['Acta Entomologica Musei Nationalis Pragae', 10764], ['Beiträge Zur Entomologie = Contributions to Entomology', 4479], ['Biodiversity Data Journal', 35892], ['Bulletin of the American Museum of Natural History', 3513], ['European Journal of Taxonomy', 15210], ['Far Eastern Entomologist', 4830], ['Insecta Mundi', 15259], ['Journal of Natural History', 11680], ['Linzer biologische Beiträge', 29039], ['The Coleopterists Bulletin', 5567], ['ZooKeys', 42990], ['Zoological Journal of the Linnean Society', 4569], ['Zoosystema', 9648], ['Zootaxa', 288083], ['Other (2492)', 99612] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=585309)', 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);