MAIDR JavaScript API
    Preparing search index...

    The subset of an MUI X axis config the adapter reads.

    Kept structural rather than imported from @mui/x-charts so the adapter needs no runtime or type dependency on the library: it reads the props the consumer wrote, and those are plain objects.

    interface MuiAxisConfig {
        id?: string;
        data?: readonly unknown[];
        dataKey?: string;
        label?: string;
        scaleType?: string;
        min?: number | Date;
        max?: number | Date;
        valueFormatter?: (value: never, context: never) => string;
    }
    Index

    Properties

    id?: string
    data?: readonly unknown[]
    dataKey?: string
    label?: string
    scaleType?: string
    min?: number | Date

    Explicit domain bounds; marks entirely outside them are not drawn.

    max?: number | Date
    valueFormatter?: (value: never, context: never) => string