function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Anju, K. & Kumar, P. Girish & Thejass, P.', 9], ['Ebrahimi, E. & Schmid, C. & Wahis, R.', 1], ['Else, George R. & Bolton, Barry & Broad, Gavin R.', 6], ['Enayatnia, Masoumeh & Rakhshani, Ehsan & Kroupa, Alexander S.', 9], ['Gadallah, Neveen S. & Schmid-Egger, Christian', 6], ['John M. Leavengood, Jr. & Waichert, Cecilia & Rodriguez, Juanita', 1], ['Kurczewski, Frank E. & West, Rick C. & Waichert, Cecilia', 4], ['Loktionov, V. M.', 2], ['Loktionov, Valery M.', 1], ['Madl, Michael', 1], ['Madl, Michael & P, Cryptocheilus & D, Cyphononyx', 1], ['Waichert, Cecilia & Rodriguez, Juanita & Von Dohlen, Carol D.', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=43)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 12, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);