function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Costa, Dimitri de Araujo & Dolbeth, Marina & Prata, Jessica', 3], ['Faulwetter, Sarah & Simboura, Nomiki & Katsiaras, Nikolaos', 8], ['Glasby, Christopher J. & Hutchings, Pat A.', 4], ['Hutchings, Pat & Lavesque, Nicolas & Priscilla, Lyndsay', 7], ['Katsiaras, Nikolaos & Simboura, Nomiki & Koutsoubas, Drosos', 3], ['Lavesque, Nicolas & Daffe, Guillemine & Glasby, Christopher', 4], ['Lavesque, Nicolas & Zanol, Joana & Daffe, Guillemine', 3], ['Liu, Yubin & Hutchings, Pat & Kupriyanova, Elena', 5], ['Liu, Yubin & Hutchings, Pat & Sun, Shichun', 5], ['Molina-Acevedo, Isabel C. & Carrera-Parra, Luis F.', 3], ['Molina-Acevedo, Isabel C. & Idris, Izwandy', 9], ['Molina-Acevedo, Isabel Cristina & Idris, Izwandy', 2], ['Razmi Shah, Raz Shauqeena Batrisyea & Ibrahim, Yusof Shuaib', 2], ['Sahin, Güley Kurt', 3], ['Zanol, Joana & Da Silva, Thauane Dos S. C. & Hutchings, Pat', 3], ['Other (8)', 8] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=72)', 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);