function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Baur, Hannes', 2], ['Dale-Skey, Natalie & Askew, Richard R. & Noyes, John S.', 18], ['Gadallah, Neveen S. & Yefremova, Zoya A.', 4], ['Kosheleva, O. V.', 4], ['Mifsud, David & Askew, Richard R.', 1], ['Mistletoe, Insects Associated With The European & Album, Viscum', 1], ['Swezey, O. H.', 1], ['Yefremova, Zoya A.', 8], ['Yoshimoto, Carl M.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=40)', 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);