@moritzbrantner/charts - v0.1.1
    Preparing search index...

    Type Alias ChartBoxPlotSvgProps<TProperties>

    type ChartBoxPlotSvgProps<TProperties = Record<string, unknown>> = {
        ariaLabel?: string;
        className?: string;
        data: ChartBoxPlotDatum<TProperties>[];
        formatValue?: (value: number | null) => string;
        legend?: ReactNode | readonly ChartSvgLegendItem[];
        onDatumSelect?: (datum: ChartBoxPlotDatum<TProperties>) => void;
        showValueLabels?: boolean;
        xAxis?: ChartSvgAxisOptions | false;
        yAxis?: ChartSvgAxisOptions | false;
    }

    Type Parameters

    • TProperties = Record<string, unknown>
    Index

    Properties

    ariaLabel?: string
    className?: string
    formatValue?: (value: number | null) => string
    legend?: ReactNode | readonly ChartSvgLegendItem[]
    onDatumSelect?: (datum: ChartBoxPlotDatum<TProperties>) => void
    showValueLabels?: boolean
    xAxis?: ChartSvgAxisOptions | false
    yAxis?: ChartSvgAxisOptions | false