You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
786 B
54 lines
786 B
export { |
|
default as scaleBand, |
|
point as scalePoint |
|
} from "./band"; |
|
|
|
export { |
|
default as scaleIdentity |
|
} from "./identity"; |
|
|
|
export { |
|
default as scaleLinear |
|
} from "./linear"; |
|
|
|
export { |
|
default as scaleLog |
|
} from "./log"; |
|
|
|
export { |
|
default as scaleOrdinal, |
|
implicit as scaleImplicit |
|
} from "./ordinal"; |
|
|
|
export { |
|
default as scalePow, |
|
sqrt as scaleSqrt |
|
} from "./pow"; |
|
|
|
export { |
|
default as scaleQuantile |
|
} from "./quantile"; |
|
|
|
export { |
|
default as scaleQuantize |
|
} from "./quantize"; |
|
|
|
export { |
|
default as scaleThreshold |
|
} from "./threshold"; |
|
|
|
export { |
|
default as scaleTime |
|
} from "./time"; |
|
|
|
export { |
|
default as scaleUtc |
|
} from "./utcTime"; |
|
|
|
export { |
|
default as scaleSequential |
|
} from "./sequential"; |
|
|
|
export { |
|
default as scaleDiverging |
|
} from "./diverging";
|
|
|