function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 37], ['Bollettino delle Sedute dell’Accademia Gioenia di Scienze Naturali in Catania', 4], ['DORYLAIMIDA Free-living, Predaceous and Plant-parasitic Nematodes', 4], ['Dorylaimida Mundi (Nematoda): Checklist of genera and species, with their records', 7], ['Fragmenta Faunistica', 5], ['Instituto Lombardo (Rend. Sc.)', 4], ['Journal of Natural History', 10], ['Journal of Nematode Morphology and Systematics', 5], ['Khumbu Himal', 3], ['Korean Journal of Applied Entomology', 3], ['Mededelingen Landbouwhogeschool Wageningen', 6], ['Pakistan Journal of Nematology', 5], ['Pedozoologica Hungarica', 5], ['Records of the Zoological Survey of India', 16], ['Zootaxa', 6], ['Other (18)', 28] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=148)', 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);