function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Amphibian & Reptile Conservation', 869], ['Biodiversity Data Journal', 3685], ['Birkhaeuser Verlag', 942], ['Bulletin of the American Museum of Natural History', 1481], ['European Journal of Taxonomy', 2720], ['Info Flora Schweiz', 1011], ['Journal of Natural History', 1547], ['Order out of Chaos. Linnaean Plant Types and their Types', 1933], ['PhytoKeys', 872], ['Phytotaxa', 5514], ['ZooKeys', 5748], ['Zoological Journal of the Linnean Society', 1153], ['Zoological Systematics', 781], ['Zoosystema', 1442], ['Zootaxa', 21989], ['Other (1015)', 19328] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=71015)', 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);