function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Zoologica Sinica', 2], ['Bulletin of the Museum of Comparative Zoology at Harvard College, 3', 2], ['E. J. Brill', 2], ['European Journal of Taxonomy', 5], ['FishTaxa', 2], ['Ichthyological Bulletin of the J. L. B. Smith Institute of Ichthyology', 2], ['Japanese Journal of Ichthyology', 3], ['Journal of the Bombay Natural History Society', 3], ['Laurentius Salvius', 4], ['Monatsberichte der Akademie der Wissenschaft zu Berlin', 2], ['Natuurkunde Tijdschrift voor Nederlandsche-Indiƫ', 2], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 2], ['Proceedings of the United States National Museum, 3', 9], ['Theses Zoologicae', 4], ['Zootaxa', 18], ['Other (34)', 38] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=100)', 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);