@antv/g2
Version:
the Grammar of Graphics in Javascript
12 lines (8 loc) • 357 B
text/typescript
import { Quantile as QuantileScale } from '@antv/scale';
import { ScaleComponent as SC } from '../runtime';
import { QuantileScale as QuantileScaleSpec } from '../spec';
export type QuantileOptions = Omit<QuantileScaleSpec, 'type'>;
export const Quantile: SC<QuantileOptions> = (options) => {
return new QuantileScale(options);
};
Quantile.props = {};