function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Belavadi, Vasuki V.', 4], ['Boustani, Mira & Rasmont, Pierre & Dathe, Holger H.', 5], ['Byvaltsev, A. M. & Belova, K. A. & Danilov, Yu. N.', 1], ['Cornalba, Maurizio & Quaranta, Marino & Selis, Marco', 1], ['Güler, Y.', 2], ['Khodaparast, Razeyeh & Monfared, Alireza', 1], ['Lhomme, Patrick', 8], ['Litman, Jessica R. & Fateryga, Alexander V. & Griswold, Terry L.', 22], ['Madl, Michael', 1], ['Nalinrachatakan, Pakorn & Ascher, John S. & Kasparek, Max', 2], ['Niu, Ze-Qing & Ascher, John S. & Griswold, Terry', 1], ['Niu, Ze-Qing & Luo, A-Rong & Griswold, Terry & Zhu, Chao-Dong', 10], ['Nkulu, Alain Tshibungu & Pauly, Alain & Dorchin, Achik', 6], ['Portman, Zachary M. & Gardner, Joel & Lane, Ian G.', 1], ['Risch, Stephan & Roberts, Stuart P. M. & Smit, Jan', 3], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=70)', 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);