function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Felder, Darryl L.', 3], ['Klompmaker, A. & Hy ̆ z, Matu ̆ s & , Roger W. Port', 7], ['Poore, Gary C. B.', 3], ['Poore, Gary C. B. & Dworschak, Peter C. & Robles, Rafael', 1], ['Sato, Taigi & Komai, Tomoyuki & Shimizu, Naoto', 2], ['Stimson, William R.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=17)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 6, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);