function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Archiv für Naturgeschichte', 9], ['Biodiversity Data Journal', 4], ['Bulletin of Marine Science', 5], ['Bulletin of the Museum of Comparative Zoology at Harvard College, 3', 4], ['Bulletin of the United States Fish Commission', 9], ['Bulletin of the United States National Museum', 4], ['Calcutta Journal of Natural History, and Miscellany of the Arts and Sciences in India', 4], ['European Journal of Taxonomy', 14], ['Ichthyological Bulletin of the J. L. B. Smith Institute of Ichthyology', 4], ['Laurentius Salvius', 8], ['Nederlandsch Tijdschrift voor de Dierkunde', 5], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 16], ['Proceedings of the United States National Museum, 3', 5], ['Records of the Australian Museum', 7], ['Zootaxa', 245], ['Other (57)', 82] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=425)', 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);