function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Baur, Hannes', 2], ['Dale-Skey, Natalie & Askew, Richard R. & Noyes, John S.', 4], ['Fallahzadeh, Majid & Japoshvili, George', 3], ['Hayat, Mohammad & Ahmad, Zubair & Khan, Farmanur Rehman', 1], ['Japoshvili, George & Soethof, Rudy', 1], ['Madl, Michael & H, Anicetus & H, Anthemus & W, Cheiloneurus', 4], ['Zuparko, Robert L.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=16)', 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);