function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Andréfouët, Serge & Chen, Wei-Jen & Kinch, Jeff & Mana, Ralph', 3], ['Bariche, Michel & Fricke, Ronald', 1], ['Bogorodsky, Sergey V. & Alpermann, Tilman J. & Mal, Ahmad O.', 1], ['Borodin, N. A.', 1], ['Carneiro, Miguel & Martins, Rogélia & Landi, Monica', 3], ['Ceríaco, Luis M. P. & Santos, Bruna S. & Semedo, Thiago B. F.', 1], ['Clark, H. W.', 1], ['Curtiss, A.', 1], ['Du, Jianguo & Loh, Kar-Hoe & Hu, Wenjia & Zheng, Xinqing', 2], ['Edwards, A. J. & Gill, A. C. & Abohweyere, P. O.', 2], ['Hilgendorf, F. M.', 2], ['Iwatsuki, Yukio & Matsuda, Tsuyoshi & Starnes, Wayne C.', 3], ['LARSON, HELEN K. & WILLIAMS, REX S. & HAMMER, MICHAEL P.', 2], ['Love, Milton S. & Bizzarro, Joseph J. & Cornthwaite, Maria', 4], ['Starnes, Wayne C.', 4], ['Other (15)', 15] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=46)', 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);