@antv/g2
Version:
the Grammar of Graphics in Javascript
13 lines (12 loc) • 361 B
TypeScript
import { MarkComponent as MC } from '../runtime';
import { IntervalMark } from '../spec';
export type IntervalOptions = Omit<IntervalMark, 'type'>;
/**
* Convert value for each channel to rect shapes.
* p0 p1
* ┌────┐
* │ │
* │ │
* p3 └────┘ p2
*/
export declare const Interval: MC<IntervalOptions>;