function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bleeker, Pieter', 1], ['Cremonte, Florencia & Drago, Fabiana B.', 1], ['De Vis, Charles Walter', 1], ['Dejean, Pierre François Marie Auguste', 1], ['Dybowski, B. I.', 1], ['Ebach, Malte C. & Gill, Anthony C. & Kwan, Alan', 1], ['Fang, P. - W. & Chong, L. - T.', 4], ['Fu, T. - S.', 1], ['Girard, Charles Frédéric', 1], ['Günther, Albert Charles Lewis Gotthilf', 2], ['McCoy, F.', 2], ['Nichols, J. T.', 2], ['Whitley, Gilbert P.', 2], ['Ye, Enqi & Xing, Yingchun & Zhang, Chunguang & Zhao, Yahui', 2], ['de Laporte Castelnau La Ferté-Sénectère, Francis L.', 8], ['Other (18)', 18] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=48)', 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);