function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Al-Kandari, Manal & Polikarpov, Igor & Nithyanandan, Manickam', 3], ['Alves, Jessika & Neves, Elizabeth & Johnsson, Rodrigo', 2], ['Cummings, Victoria M. & White, Kristine N.', 2], ['Jarvis, Charlie', 2], ['Kim, Kyung-Won & Zhang, Xin & Choi, Jae-Hong & Kim, Jun', 2], ['Krapp-Schickel, Traudl & Broyer, Claude De', 9], ['Krapp-Schickel, Traudl & De Broyer, Claude', 5], ['Kristine N. White & Traudl Krapp-Schickel', 11], ['Myers, A. A.', 10], ['Rousou, Maria & Plaiti, Wanda & Lowry, Jim', 2], ['Thacker, Dimple & Patel, Krupal & Myers, Alan', 4], ['Thomas, James Darwin & Klebba, Kristine N.', 6], ['White, Kristine N.', 102], ['White, Kristine N. & Reimer, James Davis', 25], ['White, Kristine N. & Thomas, James Darwin', 14], ['Other (12)', 14] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=213)', 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);