function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 15], ['Boston Journal of Natural History', 2], ['Check List', 39], ['Cryptogamie, Algologie', 3], ['Edinburgh Journal of Natural and Geographical Sciences', 1], ['European Journal of Taxonomy', 17], ['Mémoires Présentés à l\'Académie Impériale des Sciences de St. Pétersbourg par Divers Savants, et lus dans ses Assemblées', 1], ['Nouveaux Mémoires de la Société Impériale des Naturalistes de Moscou', 2], ['PhytoKeys', 141], ['Phytotaxa', 312], ['Plant Ecology and Evolution', 10], ['Proceedings of the Boston Society of Natural History', 1], ['Report of the British Association for the Advancement of Science', 2], ['The Pacific', 1], ['The Zoologist: A Popular Miscellany of Natural History, Second Series', 1], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=549)', 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);