function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de la Société Entomologique Belge', 1], ['Biodiversity Data Journal', 1], ['Caucasian Entomological Bulletin', 1], ['Compendium of Coffee Diseases and Pests', 1], ['Conilon coffee - The Coffea canephora produced in Brazil', 1], ['Insect Systematics and Diversity', 3], ['Insecta Mundi', 13], ['Journal of the Federated Malay States Museums', 1], ['Proceedings of IV REUNIÃO ITINERANTE DE FITOSSANIDADE DO INSTITUTO BIOLÓGICO e V ENCONTRO SOBRE DOENÇAS E PRAGAS DO CAFEEIRO', 1], ['The Coleopterists Bulletin', 1], ['Transactions of the Entomological Society of London', 1], ['United States Department of Agriculture Entomology Report', 1], ['Zootaxa', 26] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=52)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);