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

    Type Alias ChartRidgelineSvgProps<TProperties>

    type ChartRidgelineSvgProps<TProperties = Record<string, unknown>> = {
        ariaLabel?: string;
        className?: string;
        data: ChartRidgelineData<TProperties> | ChartRidgelineDatum<TProperties>[];
        formatValue?: (value: number) => string;
        legend?: ReactNode | readonly ChartSvgLegendItem[];
        onGroupSelect?: (group: ChartRidgelineDatum<TProperties>) => void;
        showGroupLabels?: boolean;
        xAxis?: ChartSvgAxisOptions | false;
    }

    Type Parameters

    • TProperties = Record<string, unknown>
    Index

    Properties

    ariaLabel?: string
    className?: string
    formatValue?: (value: number) => string
    legend?: ReactNode | readonly ChartSvgLegendItem[]
    onGroupSelect?: (group: ChartRidgelineDatum<TProperties>) => void
    showGroupLabels?: boolean
    xAxis?: ChartSvgAxisOptions | false