function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Buhl, Peter N. & Broad, Gavin R. & Notton, David G.', 4], ['Buhl, Peter N. & Notton, David G.', 1], ['Buhl, Peter Neerup', 4], ['Notton, David G.', 1], ['Notton, David G. & Popovici, Ovidiu A.', 1], ['Popovici, Ovidiu Alin & Masner, Lubomir & Lahey, Zachary', 28], ['details, Publication & authors, including instructions for', 8], ['van Noort, Simon & Lahey, Zachary & Talamas, Elijah J.', 9] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=56)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 8, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);