function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Broad, Gavin R.', 40], ['Di Giovanni, Filippo & Reshchikov, Alexey & Riedel, Matthias', 4], ['Ghahari, H. & Jussila, R.', 1], ['Kolarov, J.', 2], ['Kolarov, J. & Çoruh, İ. & Çoruh, S.', 1], ['Lima, Alessandro Rodrigues & Kumagai, Alice Fumi', 2], ['M. F & Kirtay, H. & Birol, O.', 1], ['Reshchikov, Alexey', 68], ['Reshchikov, Alexey & Choi, Jin-Kyung & Lee, Jong-Wook', 5], ['Reshchikov, Alexey & Veijalainen, Anu & Saeaeksjaerv, Ilari E.', 1], ['Reshchikov, Alexey V.', 6], ['Reshchikov, Alexey V. & Soper, Anna & Van, Roy G.', 11], ['Riedel & Pénigot & Schwarz & Diller & Johansson & Japoshvili, G.', 12], ['Riedel, Matthias & Diller, Erich & Japoshvili, George', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=156)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);