function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Andréfouët, Serge & Chen, Wei-Jen & Kinch, Jeff & Mana, Ralph', 1], ['Angulo, Arturo', 2], ['Angulo, Arturo & Betts, Joel T. & González-Alemán, Néstor J.', 2], ['Bleeker, Pieter', 2], ['Edwards, A. J. & Gill, A. C. & Abohweyere, P. O.', 2], ['Fricke, Ronald & Allen, Gerald R. & Andréfouët, Serge', 1], ['Golani, Daniel & Fricke, Ronald', 1], ['Jamandre, Brian Wade', 1], ['LARSON, HELEN K. & WILLIAMS, REX S. & HAMMER, MICHAEL P.', 1], ['Laan, Richard Van Der', 1], ['Laan, Richard Van Der & Eschmeyer, William N. & Fricke, Ronald', 1], ['Marcia Salustiano de Castro & Ana Cristina Teixeira Bonecker', 1], ['Richardson, John', 1], ['Smith-Vaniz, William F. & Jelks, Howard L.', 1], ['Spix, J. B. von & Agassiz, Jean Louis Rodolphe', 2], ['Other (3)', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=23)', 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);