function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Lam, Katherine & Morton, Brian & Leung, K. F.', 2], ['Linnaeus, Carolus', 3], ['Mariottini, Paolo & Smriglio, Carlo & Oliverio, Marco', 1], ['Negri, Mauro Pietro & Corselli, Cesare', 1], ['Oliver, P. Graham & Holmes, Anna & Killeen, Ian & Light, Janice', 2], ['Poppe, Guido & Tagaro, Sheila', 1], ['Raines, Bret & Huber, Markus', 5], ['Röding, Peter Friedrich', 1], ['Smith, Edgar A.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=17)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 9, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);