function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Barcelos, Luis MD & Rodrigues, Pedro R & Bried, Joel', 4], ['Barlow. J.', 2], ['Boano, Giovanni & Belemsobgo, Urbain & Silvano, Fabrizio', 2], ['Brünnich, M. T.', 1], ['Latham, John', 1], ['Lecroy, Mary', 36], ['Linnaeus, Carolus', 13], ['Mlíkovský, Jiří & Frahnert, Sylke', 1], ['Müller, Philipp Ludwig Statius', 1], ['Paperna, Ilan & Keong, Malcolm Soh Chu & May, Charlotte Yap Aye', 1], ['Suárez, William', 2], ['Temminck, Coenraad Jacob', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=65)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 12, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);