function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Baur, Hannes', 3], ['Blyth, E.', 1], ['Bouček, Zdeněk', 1], ['Burks, Roger A. & Krogmann, Lars & Heraty, John M.', 1], ['Dale-Skey, Natalie & Askew, Richard R. & Noyes, John S.', 24], ['Darling, D. Christopher & Tatarnic, Nikolai J.', 1], ['Darling, D. Christopher & Yoo, Jeong', 13], ['Day, F.', 1], ['Heraty, John M. & Darling, Christopher', 1], ['Jerdon, T. C.', 4], ['Madl, Michael', 6], ['McClelland, J.', 11], ['Mitroiu, Mircea-Dan & Koutsoukos, Evangelos', 22], ['Plecas, Milan & Zikic, Vladimir & Kocic, Korana', 3], ['Walker, Francis', 4], ['Other (4)', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=100)', 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);