| 1234567891011 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.BinX = void 0;
- const bin_1 = require("./bin");
- const BinX = (options = {}) => {
- const { thresholds } = options;
- return (0, bin_1.Bin)(Object.assign(Object.assign({}, options), { thresholdsX: thresholds, groupChannels: ['color'], binChannels: ['x'] }));
- };
- exports.BinX = BinX;
- exports.BinX.props = {};
- //# sourceMappingURL=binX.js.map
|