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 b8eb6c1 commit b9cf721Copy full SHA for b9cf721
src/scales/ordinal.js
@@ -121,6 +121,7 @@ function inferDomain(channels, interval) {
121
const [min, max] = extent(values).map(interval.floor, interval);
122
return interval.range(min, interval.offset(max));
123
}
124
+ if (values.size > 10e3) throw new Error("This ordinal domain would have more than 10,000 values. If this is intentional, set the domain explicitly.");
125
return sort(values, ascendingDefined);
126
127
0 commit comments