function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Abdou, Ahmed & Bouchet, Philippe', 2], ['Araya, Juan Francisco', 1], ['Brook, Fred J. & Ablett, Jonathan D.', 2], ['Brook, Fred J. & Kennedy, Martyn & King, Tania M.', 6], ['Climo, Francis Martin', 1], ['Climo, Francis Martin & Goulstone, James Frederick', 2], ['Climo, Francis Martin & Mahlfeld, Karin', 6], ['Dedov, Ivailo & Antonova, Vera', 2], ['Frank, Christa', 2], ['Maroulis, Leonidas & Vardinoyannis, Katerina & Karakasi, Danae', 1], ['Marzuki, Mohammad Effendi bin & Liew, Thor-Seng', 2], ['Powell, Arthur William Baden', 5], ['Pugh, Philip J. A. & Scott, Bronwen', 8], ['Vermeulen, Jaap J. & Liew, Thor-Seng & Schilthuizen, Menno', 3], ['de Winter, A. J.', 2], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=46)', 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);