function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Diez, Yander L. & Monnens, Marlies & Aguirre, Rosa Isabel', 22], ['REYGEL, P. C. & WILLEMS, W. R. & ARTOIS, T. J.', 1], ['Reygel, Patrick C. & Willems, Wim R. & Artois, Tom J.', 7], ['Tokinova, Rimma P. & Berdnik, Sergey V. & Ratushnyak, Anna A.', 1], ['Willems, Wim R. & Reygel, Patrick & Steenkiste, Niels Van', 2], ['Willems, Wim R. & Sandberg, Maria I. & Jondelius, Ulf', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=34)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 6, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);