| 123456789101112131415161718 |
- import { baseAnnotationChannels, basePostInference, basePreInference, } from './utils';
- import { AbstractRange } from './range';
- export const RangeX = () => {
- return AbstractRange({ extendY: true });
- };
- const shapes = ['range'];
- RangeX.props = {
- defaultShape: 'range',
- defaultLabelShape: 'label',
- composite: false,
- channels: [
- ...baseAnnotationChannels({ shapes }),
- { name: 'x', required: true },
- ],
- preInference: [...basePreInference()],
- postInference: [...basePostInference()],
- };
- //# sourceMappingURL=rangeX.js.map
|