function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['C. O & Madl, M. & Olmi, M.', 29], ['Coelho, Beatriz W. & Aguiar, Alexandre P. & Engel, Michael S.', 3], ['Derafshan, Hossein Ali & Olmi, Massimo', 3], ['Else, George R. & Bolton, Barry & Broad, Gavin R.', 30], ['Kim, Chang-Jun & Lee, Jong-Wook', 50], ['Kochetkov, D. N.', 5], ['Olmi, Massimo', 6], ['Olmi, Massimo & Copeland, Robert S.', 3], ['Olmi, Massimo & Copeland, Robert S. & Guglielmino, Adalgisa', 28], ['Olmi, Massimo & Copeland, Robert S. & Noort, Simon Van', 108], ['Olmi, Massimo & Guglielmino, Adalgisa', 4], ['Olmi, Massimo & van Noort, Simon & Guglielmino, Adalgisa', 21], ['Schüepp, Christof & Olmi, Massimo', 6], ['Xu, Zaifu & Olmi, Massimo & Guglielmino, Adalgisa & Chen, Huayan', 58], ['Xu, Zaifu & Olmi, Massimo & He, Junhua', 150], ['Other (9)', 12] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=516)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);