function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Austin, William C. & Ott, Bruce S. & Reiswig, Henry M.', 3], ['Cóndor-Luján, Báslavi & Arteaga, Alvaro & Polo, Christian', 3], ['Hajdu, Eduardo & Desqueyroux-Faúndez, Ruth', 2], ['Kim, Young A & Sim, Chung Ja', 3], ['Morozov, Grigori & Sabirov, Rushan & Zimina, Olga', 4], ['Morozov, Grigori & Sabirov, Rushan Mirzovich', 1], ['Morozov, Grigori & Strelkova, Natalya Anisimova & Zimina, Olga', 8], ['Plotkin, Alexander S. & Janussen, Dorte', 2], ['Samaai, Toufiek & Maduray, Seshnee & Janson, Liesl', 4], ['Schmidt, Eduard Oscar', 3], ['Topsent, Émile', 1], ['Turner, Thomas L. & Rouse, Greg W. & Weigel, Brooke L.', 5], ['Ugalde, Diana & Fernandez, Julio C. C. & Gómez, Patricia', 1], ['Van Soest, Rob W. M.', 11], ['Van, Rob W. M.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=52)', 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);