function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Austin, William C. & Ott, Bruce S. & Reiswig, Henry M.', 2], ['Calcinai, Barbara & Bastari, Azzurra & Bavestrello, Giorgio', 1], ['Hajdu, Eduardo & Desqueyroux-Faúndez, Ruth', 1], ['Heim, Isabel & Nickel, Michael', 2], ['Heim, Isabel & Nickel, Michael & Picton, Bernard', 1], ['Lim, Swee Cheng & Tan, Koh Siang', 1], ['Ribeiro, Suzi M. & Muricy, Guilherme', 5], ['Rützler, Klaus & Piantoni, Carla & Van, Rob W. M.', 1], ['Samaai, Toufiek & Pillay, Ruwen & Janson, Liesl', 3], ['Sarà, Michele & Bavestrello, Giorgio & Calcinai, Barbara', 4], ['Sim-Smith, Carina & Hickman, Cleveland & Kelly, Michelle', 3], ['Sorokin, Shirley J. & Ekins, Merrick G. & Yang, Qi', 2], ['Turner, Thomas L.', 3], ['Ugalde, Diana & Fernandez, Julio C. C. & Gómez, Patricia', 4], ['Van, Rob W. M.', 2], ['Other (5)', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=40)', 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);