function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Carriol, René-Pierre & Schneider, Simon', 1], ['Chan, Benny K. K. & Dreyer, Niklas & Gale, Andy S.', 1], ['Chan, Benny K. K. & Hayashi, Ryota', 2], ['Chan, Benny K. K. & Prabowo, Romanus Edy & Lee, Kwen-Shen', 1], ['Cheetham, Alan H.', 1], ['Geronimo, Raffaella Di', 2], ['Hiro, F.', 1], ['Hiro, Fujio', 3], ['Innocenti, Gianna & Geronimo, Raffaella Di & Newman, William A.', 3], ['Jones, D. S. & Hosie, Andrew M.', 1], ['Newman, William A.', 3], ['Newman, William A. & Jones, William J.', 3], ['Rosell, Neon', 3], ['Withers, T. H.', 7], ['Young, Paulo S.', 6], ['Other (7)', 7] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=45)', 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);