function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Costa, Dimitri de Araujo & Dolbeth, Marina & Prata, Jessica', 9], ['Faulwetter, Sarah & Simboura, Nomiki & Katsiaras, Nikolaos', 34], ['Garcia-Garza, Maria Elena & de Leon-Gonzalez, Jesus Angel', 4], ['Glasby, Christopher J. & Hutchings, Pat A.', 4], ['Hsueh, Pan-Wen & Li, Yan-Huei', 9], ['Hutchings, Pat & Lavesque, Nicolas & Priscilla, Lyndsay', 7], ['Liu, Yubin & Hutchings, Pat & Kupriyanova, Elena', 5], ['Liu, Yubin & Hutchings, Pat & Sun, Shichun', 5], ['McIntosh, William C.', 14], ['Molina-Acevedo, Isabel C.', 28], ['Molina-Acevedo, Isabel C. & Idris, Izwandy', 9], ['Ribas, Julia & Hutchings, Pat', 7], ['Salazar-Vallejo, Sergio I. & Carrera-Parra, Luis F.', 8], ['Schulze, Anja', 8], ['Zanol, Joana & Hutchings, Pat A. & Fauchald, Kristian', 39], ['Other (23)', 51] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=241)', 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);