function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Imura, Jimpei', 5], ['Ishikawa, Tadashi & Saito, Masayuki U. & Kishimoto-Yamada, Keiko', 2], ['Krüger, Andreas & Lis, Jerzy A.', 6], ['Larivière, Marie-Claude & Froeschner, Richard C.', 1], ['Lis, Jerzy A. & Lis, Barbara', 21], ['Lis, Jerzy A. & Lis, Barbara & Compton, Stephen G.', 2], ['Mayr, G. L.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=38)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 7, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);