function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Droissart, Vincent & Sonké, Bonaventure & Lowry Ii, Porter P.', 1], ['Faubel, A. & Warwick, R. M.', 1], ['Lin, Yi-Tao & Feng, Wei-Tao & Zhuang, Jie-Yi & Zhang, Yu', 1], ['Reygel, Patrick C. & Willems, Wim R. & Artois, Tom J.', 1], ['Willems, Wim R. & Reygel, Patrick & Steenkiste, Niels Van', 2], ['Willems, Wim R. & Sandberg, Maria I. & Jondelius, Ulf', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=8)', 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);