function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Chatterjee, Tapas & Pfingstl, Tobias & Pešić, Vladimir', 4], ['LIU, DONG & YI, TIAN-CI & XU, YUN & ZHANG, ZHI-QIANG', 1], ['Norton, Roy A. & Ermilov, Sergey G.', 5], ['Pfingstl, Tobias', 2], ['Pfingstl, Tobias & Schatz, Heinrich', 1], ['Pfingstl, Tobias & Schuster, Reinhart', 2], ['Revelo-Tobar, Harol', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=16)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 7, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);