function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Amano, Kazutaka & Little, Crispin T. S. & Campbell, Kathleen A.', 3], ['Barry, Peter J. & Mccormack, Grace P.', 3], ['Conrad, Timothy Abbot', 3], ['Cosel, Rudo von', 22], ['Glover, Emily A. & Taylor, John D.', 2], ['Moore, Charles', 3], ['Negri, Mauro Pietro & Corselli, Cesare', 5], ['Oliver, P. Graham', 11], ['Oliver, P. Graham & Frey, Melissa A.', 2], ['Oliver, P. Graham & Rodrigues, Clara F. & Carney, Robert', 2], ['Oliver, P. Graham & Sellanes, Javier', 4], ['Rodrigues, Clara F. & Oliver, Graham & Cunha, Marina R.', 8], ['Smith, Edgar A.', 9], ['Sowerby, James DeCarle', 4], ['Taylor, John D. & Glover, Emily A.', 7], ['Other (6)', 6] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=94)', 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);