function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Azevedo, Fernanda & Cóndor-Luján, Báslavi & Willenz, Philippe', 5], ['Azevedo, Fernanda & Hajdu, Eduardo & Willenz, Philippe', 2], ['Azevedo, Fernanda & Klautau, Michelle', 3], ['Borojevic, Radovan & Klautau, Michelle', 1], ['Fontana, Tayara & Cóndor-Luján, Báslavi & Azevedo, Fernanda', 6], ['Klautau, Michelle', 5], ['Klautau, Michelle & Borojevic, Radovan', 8], ['Klautau, Michelle & Imešek, Mirna & Azevedo, Fernanda', 2], ['Klautau, Michelle & Lopes, Matheus Vieira & Guarabyra, Bruna', 2], ['Klautau, Michelle & Valentine, Clare', 37], ['Lopes, Matheus V. & Padua, André & Cóndor-Luján, Báslavi', 3], ['Rapp, Hans Tore & Göcke, Christian & Tendal, Ole Secher', 2], ['Rützler, Klaus & Piantoni, Carla & Van, Rob W. M.', 2], ['Van, Rob W. M. & De, Nicole J.', 16], ['Voigt, Oliver & Erpenbeck, Dirk & González-Pech, Rául A.', 2], ['Other (5)', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=101)', 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);