function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Barrabé, Laure & Mouly, Arnaud & Florence, Jacques', 82], ['Blahnik, Roger J. & Holzenthal, Ralph W.', 145], ['Castello, Ana Carolina Devides', 81], ['Hess, Hans Ernst & Landolt, Elias & Hirzel, Rosmarie', 116], ['Info Flora', 111], ['Jarvis, Charlie', 282], ['Konrad Lauber & Gerhart Wagner & Andreas Gygax', 88], ['Linnaeus, Carolus', 162], ['Merrill, Elmer Drew & Perry, Lily May', 110], ['Middleton, David J. & Regalado J, Jacinto C.', 125], ['Molino, Jean-François & Sabatier, Daniel & Grenand, Pierre', 107], ['Razafimandimbison, Sylvain G. & Bremer, Birgitta', 111], ['Taylor, Charlotte M. & Razafimandimbison, Sylvain G.', 108], ['Valeton, Theodoric', 145], ['Zhou, Ya-Dong & Mwachala, Geoffrey & Hu, Guang-Wan', 105], ['Other (415)', 2129] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=4007)', 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);