function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Abotsi, Komla Elikplim & Kokou, Kouami & Dubuisson, Jean-Yves', 42], ['Blume, Carl Ludwig von', 5], ['Cabezudo, Baltasar & Solanas, Federico Casimiro-Soriguer', 12], ['Carmes, Amanda Angélica & Dechoum, Michele de Sá', 12], ['Cremers, Georges & Aupic, Cécile', 9], ['Cremers, Georges & Boudrie, Michel', 7], ['Fischer, Eberhard & Lobin, Wolfram', 49], ['Hess, Hans Ernst & Landolt, Elias & Hirzel, Rosmarie', 14], ['Info Flora', 28], ['Jarvis, Charlie', 31], ['Konrad Lauber & Gerhart Wagner & Andreas Gygax', 15], ['Lee, Jong-Won & Yun, Ho-Geun & Hwang, Tae Young & Kim, Kyungmin', 5], ['Rosenstock, Eduard', 9], ['Salgado, Arthur Edward', 8], ['Zhou, Ya-Dong & Mwachala, Geoffrey & Hu, Guang-Wan', 26], ['Other (32)', 57] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=329)', 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);