function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Anais da Sociedade Entomológica do Brasil', 3], ['Annals of the Entomological Society of America', 1], ['Boletím Científico Centro de Museos Museo de Historia Natural', 3], ['Boletín Científico - Centro de Museos - Museo de Historia Natural', 5], ['Check List', 3], ['Costa Rican Ecosystems', 1], ['Ecole Pratique des Hautes Etudes, Travaux du Laboratoire. Biologie et Evolution des Insectes (principalement Hemipteroidea ou Rh', 8], ['Florida Entomologist', 1], ['Journal of Natural History', 4], ['Neotropical Entomology', 3], ['Pragas de solo no Brasil', 2], ['Revista del Colegio National Vicente Rocafuerte', 10], ['The Florida Entomologist', 2], ['Zoosystema', 5], ['Zootaxa', 38], ['Other (4)', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=93)', 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);