UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

6 lines 854 B
import { type MakeOptional } from '@mui/x-internals/types'; import { type ScaleName } from "../../../../models/index.js"; import type { ChartsRotationAxisProps, PolarAxisConfig, ChartsRadiusAxisProps } from "../../../../models/axis.js"; import { type DatasetType } from "../../../../models/seriesType/config.js"; export declare function defaultizeAxis<TScale extends ScaleName = ScaleName>(inAxis: MakeOptional<PolarAxisConfig<TScale, any>, 'id'>[] | undefined, dataset: Readonly<DatasetType> | undefined, axisName: 'rotation'): PolarAxisConfig<TScale, any, ChartsRotationAxisProps>[]; export declare function defaultizeAxis<TScale extends ScaleName = ScaleName>(inAxis: MakeOptional<PolarAxisConfig<TScale, any>, 'id'>[] | undefined, dataset: Readonly<DatasetType> | undefined, axisName: 'radius'): PolarAxisConfig<TScale, any, ChartsRadiusAxisProps>[];