function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Andréfouët, Serge & Chen, Wei-Jen & Kinch, Jeff & Mana, Ralph', 7], ['Ballen, Gustavo A.', 3], ['Bariche, Michel & Fricke, Ronald', 3], ['Bleeker, Pieter', 3], ['Carneiro, Miguel & Martins, Rogélia & Landi, Monica', 3], ['Du, Jianguo & Loh, Kar-Hoe & Hu, Wenjia & Zheng, Xinqing', 5], ['Ebersole, Jun A. & Cicimurri, David J. & Stringer, Gary L.', 2], ['Edwards, A. J. & Gill, A. C. & Abohweyere, P. O.', 3], ['Golani, Daniel', 2], ['Golani, Daniel & Bogorodsky, Sergey V.', 2], ['Love, Milton S. & Bizzarro, Joseph J. & Cornthwaite, Maria', 4], ['Morishita, Satoshi & Motomura, Hiroyuki', 3], ['Nurettin Meriç & Lütfiye Eryilmaz & Müfit Özulug', 2], ['Smith, J. L. B.', 3], ['Zainal Abidin, Danial Hariz & Lavoué, Sébastien', 3], ['Other (29)', 33] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=81)', 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);