UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

3 lines 348 B
import { type NumberValue } from '@mui/x-charts-vendor/d3-scale'; import { type ContinuousScaleName, type D3ContinuousScale } from "../models/axis.js"; export declare function getScale<Domain extends NumberValue = any, Range = any>(scaleType: ContinuousScaleName, domain: Iterable<Domain>, range: readonly Range[]): D3ContinuousScale<Range, Range>;