@antv/g2
Version:
the Grammar of Graphics in Javascript
25 lines (21 loc) • 451 B
text/typescript
export const ContinuousScale = {
linear: 'linear',
identity: 'identity',
log: 'log',
pow: 'pow',
sqrt: 'sqrt',
sequential: 'sequential',
} as const;
export const DistributionScale = {
threshold: 'threshold',
quantize: 'quantize',
quantile: 'quantile',
} as const;
export const DiscreteScale = {
ordinal: 'ordinal',
band: 'band',
point: 'point',
} as const;
export const ConstantScale = {
constant: 'constant',
} as const;