binX.js 427 B

1234567891011
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.BinX = void 0;
  4. const bin_1 = require("./bin");
  5. const BinX = (options = {}) => {
  6. const { thresholds } = options;
  7. return (0, bin_1.Bin)(Object.assign(Object.assign({}, options), { thresholdsX: thresholds, groupChannels: ['color'], binChannels: ['x'] }));
  8. };
  9. exports.BinX = BinX;
  10. exports.BinX.props = {};
  11. //# sourceMappingURL=binX.js.map