function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Abalo-Loko, Goudjo Ameto & Guelly, Kudzo Atsu', 2], ['Amorim, Dalton De Souza & Oliveira, Sarah Siqueira', 1], ['Dauphin, Gregorio & Gradstein, S. Robbert & Allen, Noris Salazar', 2], ['Gomes do Nascimento, Géssica Maria', 1], ['Gradstein, S. Robbert', 2], ['Gradstein, S. Robbert & Bernard, Elisabeth Lavocat', 1], ['Jarvis, Charlie', 2], ['Lucile Rabeau & S. Robbert Gradstein & Jean-Yves Dubuisson', 2], ['Nebel, Martin & Söderström, Lars & Hagborg, Anders', 1], ['Osman, Imen Ben & Hugonnot, Vincent & Muller, Serge D.', 1], ['Pioli, Achille', 1], ['Pressel, Silvia & Bidartondo, Martin I. & Ligrone, Roberto', 1], ['Söderström, Lars & Hagborg, Anders & Konrat, Matt Von', 8], ['Thouvenot, Louis & Müller, Frank', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=26)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);