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

    Type Alias ChartLabelOverlayProps<TPayload>

    ChartLabelOverlayProps: Omit<ChartLabelLayoutOptions, "boundary" | "obstacles"> & {
        className?: string;
        labels: readonly ChartDataLabelAnnotation<TPayload>[];
        obstacles?: readonly ChartDataLabelObstacle[];
        pixelObstacles?: readonly ChartLabelObstacle[];
        renderLabel?: (label: ChartPlacedLabel<TPayload>) => ReactNode;
        xAxisId?: string | number;
        yAxisId?: string | number;
    }

    Type Parameters

    • TPayload = unknown