function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Anais da Sociedade Entomológica do Brasil', 3], ['Annals and Magazine of Natural History', 2], ['Biotemas', 4], ['Boletím Científico Centro de Museos Museo de Historia Natural', 1], ['Boletín Científico - Centro de Museos - Museo de Historia Natural', 5], ['Check List', 5], ['Journal of Insect Biodiversity', 4], ['Journal of Natural History', 18], ['Neotropical Entomology', 4], ['Pragas de solo no Brasil', 3], ['Revista Nicaraguense de Entomologia', 3], ['Revista del Colegio National Vicente Rocafuerte', 20], ['The Florida Entomologist', 2], ['Zoosystema', 21], ['Zootaxa', 191], ['Other (5)', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=291)', 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);