function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Alves, Philippe V. & Vieira, Fabiano M. & Santos, Cláudia P.', 1], ['Astibia, Humberto & Merle, Didier & Pacaud, Jean-michel', 1], ['Bail, P', 1], ['Bail, P & Limpus, A', 15], ['Bail, Patrice & Chino, Mitsuo', 2], ['Born, Ignaz von', 1], ['Dall, William Healey', 2], ['Darragh, Thomas A.', 1], ['Geiger, Daniel L.', 1], ['Gray, John Edward', 2], ['Habe, Tadashige', 3], ['Linnaeus, Carolus', 30], ['Merle, Didier & Pacaud, Jean-Michel & Métais, Grégoire', 28], ['Röding, Peter Friedrich', 9], ['Thivaiou, Danae & Harzhauser, Mathias & Koskeridou, Efterpi', 2], ['Other (9)', 9] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=108)', 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);