function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Darbyshire, Teresa', 2], ['Faulwetter, Sarah & Simboura, Nomiki & Katsiaras, Nikolaos', 4], ['Garcia-Garza, Maria Elena & de Leon-Gonzalez, Jesus Angel', 2], ['Glasby, Christopher J.', 3], ['Hadiyanto, Hadiyanto', 3], ['Kinberg, Johan Gustaf Hjalmar', 1], ['Mikac, Barbara', 1], ['Razmi Shah, Raz Shauqeena Batrisyea & Ibrahim, Yusof Shuaib', 1], ['Read, Geoffrey B.', 7], ['Salazar-Vallejo, Sergio I. & Carrera-Parra, Luis F.', 1], ['Tasso, Vicente & El Haddad, Mustapha & Assadi, Carolina', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=26)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);