function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Boury-Esnault, Nicole & Bellan, Gerard & Bellan-Santini, Denise', 1], ['Jangoux, Michel', 4], ['Jarvis, Charlie', 4], ['Macagnan, Leonardo B. & Venturin, Claudia S.', 6], ['Mead, A. & Carlton, J. T. & Griffiths, C. L. & Rius, M.', 1], ['Peña, Viviana & R, Tamara & G, uiz de & Torres, auna', 1], ['Schneider, Craig W. & Popolizio, Thea R. & Spagnuolo, Dylan S.', 1], ['Sherwood, Alison R. & Cabrera, Feresa P. & Spalding, Heather L.', 1], ['de Clerck, Olivier & Coppejans, Eric & Schils, Tom', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=23)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 9, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);