function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['A. Constable', 2], ['Annales du Musee Royale de l\'Afrique Centrale, Zoologie, Serie 8', 4], ['Biodiversity Data Journal', 4], ['Bulletin de la Société Philomathique de Paris, Série 7', 2], ['Calcutta Journal of Natural History, and Miscellany of the Arts and Sciences in India', 9], ['Check List', 4], ['Ichthyological Exploration of Freshwaters', 4], ['Indian Journal of Helminthology', 2], ['Japanese Journal of Ichthyology', 2], ['Journal of Natural History', 2], ['Journal of the Bombay Natural History Society', 3], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 4], ['Proceedings of the Zoological Society of London, B', 3], ['Raffles Bulletin of Zoology', 5], ['Zootaxa', 45], ['Other (41)', 44] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=139)', 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);