function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Barcelos, Luis MD & Rodrigues, Pedro R & Bried, Joel', 2], ['Becherer', 3], ['Chen, Ronglian & Zhang, Faqi & Chen, Shilong & Chi, Xiaofeng', 2], ['Hess, Hans Ernst & Landolt, Elias & Hirzel, Rosmarie', 3], ['Info Flora', 2], ['Jarvis, Charlie', 5], ['Jeanmonod, Daniel', 1], ['Konrad Lauber & Gerhart Wagner & Andreas Gygax', 2], ['Lee, Jong-Won & Yun, Ho-Geun & Hwang, Tae Young & Kim, Kyungmin', 3], ['Micucci, M. & Bolchi, C. & Budriesi, R. & Cevenini, M.', 1], ['Mille, Christian & Henderson, Rosa C. & Cazères, Sylvie', 1], ['Mourer-Chauviré, Cécile & Geraads, Denis', 2], ['Suh, Soo-Jung', 2], ['Turner, Ian M.', 2], ['Vieillot, Louis Pierre', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=32)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);