We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 586542b commit 7530b93Copy full SHA for 7530b93
src/plots/plots.js
@@ -3207,11 +3207,11 @@ function sortAxisCategoriesByValue(axList, gd) {
3207
median: function(values) {return Lib.median(values);}
3208
};
3209
3210
- function sortAscending (a, b) {
+ function sortAscending(a, b) {
3211
return a[1] - b[1];
3212
}
3213
3214
- function sortDescending (a, b) {
+ function sortDescending(a, b) {
3215
return b[1] - a[1];
3216
3217
0 commit comments