function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Ann. Soc. Agr Lyon', 3], ['Biodiversity Data Journal', 11], ['European Journal of Taxonomy', 1], ['Fragmenta Faunistica', 2], ['Insecta Mundi', 18], ['Journal N Y Ent Soc', 3], ['Linzer biologische Beiträge', 1], ['Méquignon-Marvis', 1], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 1], ['Proceedings of the Hawaiian Entomological Society', 1], ['Senckenb Biol', 1], ['The Coleopterists Bulletin', 1], ['Transactions of the American Entomological Society', 1], ['ZooKeys', 5], ['Zootaxa', 37], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=88)', 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);