function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Baselga, Andres', 2], ['Baselga, Andrés', 2], ['Cho, H. - W. & An, S. L.', 11], ['Cho, Hee Wook & Lee, Jong Eun', 2], ['Cho, Hee-Wook', 25], ['Cho, Hee-Wook & Borowiec, Lech', 18], ['Cho, Hee-Wook & Kippenberg, Horst & Borowiec, Lech', 6], ['Dejean, Pierre François Marie Auguste', 1], ['Ekiz, Ali Nafiz & Şen, İsmail & Aslan, Ebru Gül & Gök, Ali', 1], ['Guskova, Elena V.', 2], ['Lee, Chi-Feng & Hsieh, Chia-Hung', 8], ['Ruchin, Alexaner B. & Egorov, Leonid V. & Alekseev, Sergei K.', 1], ['Suenaga, Haruki', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=81)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);