function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Info Flora', 1], ['Martinetto, Edoardo & Macaluso, Loredana', 1], ['Micucci, M. & Bolchi, C. & Budriesi, R. & Cevenini, M.', 1], ['Reveal, James L. & Chase, Mark W. & Iii, - Apg & Iii, Apg', 3], ['Rio, Cédric Del & Stull, Gregory W. & Franceschi, Dario De', 1], ['Smith, MacKenzie A. & Greenwalt, Dale E. & Manchester, Steven R.', 1], ['Suh, Soo-Jung', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=9)', 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);