function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales du Musée Royal du Congo Belge, Série 4, Zoologiques', 3], ['Annales du Musée Royal du Congo Belge, Série 5, Zoologiques', 1], ['Archives de l\'Institute Pasteur du Maroc', 1], ['Journal of Fujian Teachers University (Natural Science)', 1], ['Journal of helminthology', 1], ['Proceedings of the Helminthological Society of Washington', 1], ['Proceedings of the Linnean Society of New South Wales', 3], ['Proceedings of the National Academy of India', 1], ['Revue suisse de zoologie', 1], ['Wuyi Science Journal', 1], ['Zootaxa', 51] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=65)', 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);