function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Fryer, Geoffrey & Boxshall, Geoffrey', 1], ['Müller, Otto Friedrich', 1], ['Padhye, Sameer & Timms, Brian & Ghate, Hemant V.', 1], ['Rogers, D. Christopher & Hill, Matthew A.', 1], ['Sigvardt, Zandra M. S. & Shu, Shusen & Alonso, Miguel', 1], ['Simhachalam, Gullipalli & Timms, Brian V', 1], ['TIMMS, BRIAN V', 6] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=12)', 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);