function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Alonso, Miguel & Sinev, Artem Y.', 2], ['DAMME, KAY VAN & SINEV, ARTEM YU & DUMONT, HENRI J.', 16], ['Dadykin, Ivan A. & Sinev, Artem Y. & Gu, Yangliang', 27], ['Damme, Kay Van & Sinev, Artem Y.', 6], ['Elmoor-Loureiro, Lourdes M. A. & Santos-Wisniewski, Maria José', 4], ['Elías-Gutiérrez, Manuel & Jerónimo, Fernando Martínez', 3], ['Garibian, Petr G. & Neretina, Anna N. & Klimovsky, Alexey I.', 3], ['Ghaouaci, Souad & Amarouayache, Mounia & Sinev, Artem Y.', 2], ['Macêdo, Rafael Lacerda & Sousa, Francisco Diogo R.', 31], ['Neretina, Anna N. & Sinev, Artem Y.', 2], ['Sinev, Artem Y.', 18], ['Sinev, Artem Y. & Dumont, Henri J.', 14], ['Sinev, Artem Y. & Kotov, Alexey A.', 3], ['Sinev, Artem Y. & Sousa, Francisco Diogo Rocha', 6], ['Sousa, Francisco Diogo R. & Elmoor-Loureiro, Lourdes M. A.', 10], ['Other (33)', 41] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=188)', 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);