function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Albert G. Orr & RorY A. Dow', 2], ['Asahina, Syoziro', 6], ['Dijkstra, Klaas-Douwe B. & Kalkman, Vincent J. & Dow, Rory A.', 8], ['Dow, Rory A.', 5], ['Dow, Rory A. & Choong, Chee Yen & Ng, Yong Foo', 2], ['Dow, Rory A. & Reels, Graham T.', 5], ['Dow, Rory A. & Zhang, Hao-Miao', 3], ['Kompier, Tom & Dow, Rory A. & Steinhoff, Philip O. M.', 9], ['Kompier, Tom & Phan, Quoc Toan', 2], ['Kosterin, Oleg E. & Kompier, Tom', 2], ['Lieftinck, M. A.', 2], ['M. A. Lieftinck', 4], ['Phan, Quoc Toan', 2], ['Phan, Quoc Toan & Ngo, Quoc Phu & Bui, Anh Phong', 3], ['Steinhoff, Philip O. M. & Uhl, Gabriele', 4], ['Other (4)', 6] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=65)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);