function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Barcelos, Luis MD & Rodrigues, Pedro R & Bried, Joel', 10], ['Boano, Giovanni & Belemsobgo, Urbain & Silvano, Fabrizio', 7], ['Boddaert, Pieter', 3], ['Dean, W. Richard J. & Åhlander, Erik & Johansson, Ulf S.', 2], ['Fernandez, Juan Manuel & Thomann, Luz & Fandiño, Blas', 2], ['Horsfield, Thomas', 3], ['Jansen, Justin J. F. J.', 2], ['Latham, John', 1], ['Linnaeus, Carolus', 21], ['Mlíkovský, Jiří & Frahnert, Sylke', 2], ['Pallas, Peter Simon', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=54)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);