function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acarologia', 4191], ['American Museum Novitates', 737], ['Biodiversity Data Journal', 3669], ['Bulletin of the American Museum of Natural History', 3623], ['European Journal of Taxonomy', 2455], ['Euscorpius', 973], ['Hornmilben (Oribatida) [Dahl, Tierwelt Deutschlands, Teil 76]', 869], ['Journal of Natural History', 1874], ['Laurentius Salvius', 778], ['Persian Journal of Acarology', 1700], ['ZooKeys', 6260], ['Zoological Journal of the Linnean Society', 1622], ['Zoological Systematics', 882], ['Zoosystema', 2753], ['Zootaxa', 47922], ['Other (1174)', 19374] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=99682)', 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);