function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Aqua, Journal of Ichthyology and Aquatic Biology', 5], ['Biodiversity Data Journal', 16], ['Copeia', 9], ['European Journal of Taxonomy', 4], ['Ichthyological Bulletin of the J. L. B. Smith Institute of Ichthyology', 9], ['Indo-Pacific Fishes', 9], ['Memoirs of the Queensland Museum', 4], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 7], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 7], ['Proceedings of the Biological Society of Washington', 7], ['Proceedings of the United States National Museum, 3', 10], ['Raffles Bulletin of Zoology', 7], ['Records of the Australian Museum', 5], ['Revue française d\'Aquariologie Herpétologie', 8], ['Zootaxa', 251], ['Other (59)', 79] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=437)', 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);