function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acarologia', 4172], ['American Museum Novitates', 737], ['Biodiversity Data Journal', 3668], ['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', 772], ['Persian Journal of Acarology', 1700], ['ZooKeys', 6245], ['Zoological Journal of the Linnean Society', 1622], ['Zoological Systematics', 882], ['Zoosystema', 2753], ['Zootaxa', 47895], ['Other (1170)', 19246] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=99486)', 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);