function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Blacket, Mark J. & Shea, Michael & Semeraro, Linda', 5], ['Bouaziz-Yahiatene, Houria & Inaebnit, Thomas', 5], ['Bouaziz-Yahiatene, Houria & Pfarrer, Beat', 4], ['Breure, Abraham S. H.', 46], ['Breure, Abraham S. H. & Ablett, Jonathan D.', 42], ['Breure, Abraham S. H. & Tardy, Emmanuel', 35], ['Brook, Fred J. & Ablett, Jonathan D.', 89], ['Colomba, Stella & Gregorini, Armando & Liberto, Fabio', 4], ['Cowie, Robert H. & Héros, Virginie & Yeung, Norine W.', 9], ['Dedov, Ivailo & Antonova, Vera', 4], ['Fasulo, Giuseppe & Duraccio, Sergio & Federico, Antonio', 8], ['Frank, Christa', 8], ['Hausdorf, Bernhard & Bamberger, Sonja & Walther, Frank', 5], ['Linnaeus, Carolus', 53], ['Maroulis, Leonidas & Vardinoyannis, Katerina & Karakasi, Danae', 6], ['Other (31)', 59] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=382)', 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);