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 795220f commit 96431bbCopy full SHA for 96431bb
src/plots/plots.js
@@ -2887,6 +2887,9 @@ plots.doCalcdata = function(gd, traces) {
2887
// Sort axis categories per value if specified
2888
var sorted = sortAxisCategoriesByValue(axList, gd);
2889
if(sorted.length) {
2890
+ // how many box/violins plots do we have (in case they're grouped)
2891
+ fullLayout._numBoxes = 0;
2892
+ fullLayout._numViolins = 0;
2893
// If a sort operation was performed, run calc() again
2894
for(i = 0; i < sorted.length; i++) calci(sorted[i], true);
2895
for(i = 0; i < sorted.length; i++) calci(sorted[i], false);
0 commit comments