function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Ebrahimi, E. & Schmid, C. & Wahis, R.', 5], ['Else, George R. & Bolton, Barry & Broad, Gavin R.', 10], ['Enayatnia, Masoumeh & Rakhshani, Ehsan & Kroupa, Alexander S.', 14], ['Gadallah, Neveen S. & Schmid-Egger, Christian', 3], ['Kurczewski, Frank E. & West, Rick C. & Waichert, Cecilia', 13], ['Loktionov, V. M.', 10], ['Loktionov, Valery M.', 3], ['Madl, Michael & P, Cryptocheilus & D, Cyphononyx', 2], ['Rodriguez, Juanita & Waichert, Cecilia & Von Dohlen, Carol D.', 2], ['Sadler, Emily', 12], ['Schedl, Wolfgang', 2], ['Schmid, C.', 3], ['Wahis, Raymond & Durand, Frédéric & Villemant, Claire', 2], ['Waichert, Cecilia & Rodriguez, Juanita & Von Dohlen, Carol D.', 5], ['Wolf, H. & D-R', 3], ['Other (9)', 10] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=99)', 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);