function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 29], ['Bulletin of the American Museum of Natural History', 1], ['Bulletin of the United States National Museum', 1], ['Field Columbian Museum Zoological Series', 1], ['Jornal de Sciencias Mathematicas, Physicas e Naturaes', 1], ['Journal of Natural History', 9], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 1], ['Proceedings of the United States National Museum, 3', 6], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 4], ['Sanfilippo', 2], ['Species Diversity', 12], ['ZooKeys', 31], ['Zoosystema', 41], ['Zoosystematics and Evolution', 4], ['Zootaxa', 199] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=342)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);