function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales du Musée Royal du Congo Belge, Série 5, Zoologiques', 2], ['Biodiversity Data Journal', 3], ['Bulletin de la Société Philomathique de Paris, Série 7', 1], ['Indian Journal of Helminthology', 3], ['Kwahak Wontongbo', 2], ['Proceedings of the Helminthological Society of Washington', 1], ['Proceedings of the United States National Museum, 3', 1], ['Records of the Indian Museum', 1], ['Transactions of the American Microscopical Society', 1], ['Zoopathologica', 1], ['Zootaxa', 7] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=23)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);