function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 10], ['Bulletin of the Museum of Comparative Zoology at Harvard College, 3', 3], ['Catalogue of the Birds in the British Museum', 3], ['Check List', 18], ['Denkschriften der Kaiserlichen Akademie der Wissenschaften, Wien', 2], ['G. Levrault', 5], ['Journal and Proceedings of the Asiatic Society of Bengal', 4], ['Journal of Natural History', 2], ['Laurentius Salvius', 25], ['Leigh, Sotheby & Son', 2], ['Veit', 6], ['Verhandelingen van het Bataviaasch Genootschap van Kunsten en Wetenschappen', 9], ['Zoosystema', 25], ['Zoosystematics and Evolution', 4], ['Zootaxa', 26], ['Other (23)', 26] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=170)', 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);