function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Boulenger, George Albert', 20], ['Daget, J.', 3], ['Friel, John P. & Vigliotta, Thomas R.', 6], ['Günther, Albert Charles Lewis Gotthilf', 3], ['Heok Hee Ng', 14], ['Ng, Heok Hee', 9], ['Pellegrin, J.', 10], ['Peters, Wilhelm Carl Hartwig', 3], ['Poll, M.', 12], ['Roberts, Tyson R.', 4], ['Schmidt, Ray C & Bart, Henry L. & Pezold, Frank L.', 9], ['Schmidt, Ray C. & Bart Jr, Henry L. & Nyingi, Wanja Dorothy', 6], ['Seegers, Lothar', 3], ['Vaillant, L. L.', 5], ['Vinciguerra, Decio', 3], ['Other (41)', 48] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=158)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);