function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Entomologica Musei Nationalis Pragae', 4033], ['Biodiversity Data Journal', 17628], ['Bulletin of the American Museum of Natural History', 2752], ['European Journal of Taxonomy', 7297], ['Insecta Mundi', 4931], ['Journal of Natural History', 5519], ['Laurentius Salvius', 2900], ['Linzer biologische Beiträge', 11286], ['Mammal Species of the World: a Taxonomic and Geographic Reference (3 rd Edition), Volume 1', 2479], ['Order out of Chaos. Linnaean Plant Types and their Types', 3153], ['Phytotaxa', 7279], ['ZooKeys', 18801], ['Zoological Journal of the Linnean Society', 3012], ['Zoosystema', 4832], ['Zootaxa', 125831], ['Other (3392)', 95791] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=317524)', 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);