function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Amphibian & Reptile Conservation', 2], ['Annals of the Carnegie Museum', 2], ['Avances en Ciencias e Ingenierías', 12], ['Biota Colombiana', 1], ['Bulletin of the Museum of Comparative Zoology at Harvard College.', 1], ['European Journal of Taxonomy', 3], ['Evolutionary Systematics', 4], ['Papéis Avulsos de Zoologia', 4], ['PeerJ', 2], ['Public Library of Science, ONE', 4], ['Vertebrate Zoology', 3], ['ZooKeys', 45], ['Zoosystema', 8], ['Zoosystematics and Evolution', 2], ['Zootaxa', 98], ['Other (5)', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=196)', 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);