function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Avontuur, Juanita R. & Palmer, Marike & Beukes, Chrizelle W.', 3], ['Bijlani, Swati & Singh, Nitin K. & Eedara, V. V. Ramprasad', 1], ['Calder, Dale R. & Choong, Henry H. C.', 2], ['Castro, David J. & Cerezo, Isabel & Sampedro, Inmaculada', 1], ['Dehio, C & Lanz, C & Pohl, R & Behrens, P & Bermond, D', 1], ['Evenhuis, Neal L. & O’Hara, James E. & Pape, Thomas', 1], ['Guo, Mingxia & Xing, Lida & Wang, Bo & Zhang, Weiwei', 1], ['Iorgu, Ionuț Ştefan & Iorgu, Elena Iulia & Stalling, Thomas', 1], ['Jung, Hye Su & Yoon, Jung-Hoon & Joh, Kiseong & Seong, Chi-Nam', 23], ['Kim, Jong-Hwa & Kanjanasuntree, Rungravee & Kim, Dae-Hoon', 2], ['Klopfstein, Seraina & Kropf, Christian & Baur, Hannes', 2], ['Loperena-Barber, Maite & Khames, Mammar & Leclercq, Sébastien O.', 1], ['Panahandeh, Yousef & Pourjam, Ebrahim & Abolafia, Joaquín', 1], ['Park, Mi-Jeong & Namirimu, Teddy & Yang, Sung-Hyun', 4], ['Peirce, M. A.', 1], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=47)', 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);