binX.js 291 B

1234567
  1. import { Bin } from './bin';
  2. export const BinX = (options = {}) => {
  3. const { thresholds } = options;
  4. return Bin(Object.assign(Object.assign({}, options), { thresholdsX: thresholds, groupChannels: ['color'], binChannels: ['x'] }));
  5. };
  6. BinX.props = {};
  7. //# sourceMappingURL=binX.js.map