function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Abu El-Ghiet, Usama M. & Gadallah, Neveen S.', 2], ['Amarante, Sérvio Túlio P.', 4], ['Else, George R. & Bolton, Barry & Broad, Gavin R.', 12], ['Fabricius, Johann Christian', 5], ['Gadallah, Neveen S.', 4], ['Gadallah, Neveen S. & Abu El-Ghiet, Usama M.', 2], ['H, Phong & G, P. & N, Yuriy', 3], ['Jacobs, Hans-Joachim & Liebig, Wolf-Harald', 4], ['Jahantigh, Fatemeh & Rakhshani, Ehsan & Mokhtari, Azizollah', 8], ['Jesus, Juliana Menezes de & Onody, Helena Carolina', 5], ['Madl, M.', 10], ['Mokrousov, M. V. & Proshchalykin, M. Yu. & Aliyev, Kh. A.', 4], ['Mokrousov, Mikhail V. & Proshchalykin, Maxim Yu.', 3], ['Pham, Phong Huy & Nguyen, Anh Thi & Antropov, A. V.', 15], ['Schmid, C.', 3], ['Other (10)', 15] ]); 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);