Hex Core JS
    Preparing search index...

    Type Alias LineProps

    type LineProps = {
        activeDot?: RechartsLineProps["activeDot"];
        animateNewValues?: RechartsLineProps["animateNewValues"];
        animationBegin?: RechartsLineProps["animationBegin"];
        animationDuration?: RechartsLineProps["animationDuration"];
        animationEasing?: RechartsLineProps["animationEasing"];
        className?: RechartsLineProps["className"];
        connectNulls?: RechartsLineProps["connectNulls"];
        dot?: RechartsLineProps["dot"];
        hide?: RechartsLineProps["hide"];
        isAnimationActive?: RechartsLineProps["isAnimationActive"];
        legendType?: RechartsLineProps["legendType"];
        name?: RechartsLineProps["name"];
        onAnimationEnd?: RechartsLineProps["onAnimationEnd"];
        onAnimationStart?: RechartsLineProps["onAnimationStart"];
        tooltipType?: RechartsLineProps["tooltipType"];
        type?: RechartsLineProps["type"];
        unit?: RechartsLineProps["unit"];
        xAxisId?: RechartsLineProps["xAxisId"];
        yAxisId?: RechartsLineProps["yAxisId"];
    }
    Index

    Properties

    activeDot?: RechartsLineProps["activeDot"]

    Just like dot but only for hovered data points. A boolean, indicating whether a dot should appear on each data point Or an object with keys className, cx, cy and r defining size and position of dots Or a custom (svg) component to render instead of a dot. recharts.org docs

    animateNewValues?: RechartsLineProps["animateNewValues"]

    whether to animate values when data is updated. Seems to require isAnimationActive to be true.

    animationBegin?: RechartsLineProps["animationBegin"]
    animationDuration?: RechartsLineProps["animationDuration"]
    animationEasing?: RechartsLineProps["animationEasing"]
    className?: RechartsLineProps["className"]

    className attached to each line

    connectNulls?: RechartsLineProps["connectNulls"]

    Whether to fill null values with interpolated data. recharts.org docs

    dot?: RechartsLineProps["dot"]

    A boolean, indicating whether a dot should appear on each data point Or an object with keys className, cx, cy and r defining size and position of dots Or a custom (svg) component to render instead of a dot. recharts.org docs

    hide?: RechartsLineProps["hide"]

    Whether to hide the current line.

    isAnimationActive?: RechartsLineProps["isAnimationActive"]

    Whether to animate values. recharts.org docs

    legendType?: RechartsLineProps["legendType"]

    the type of icon to display in legends. recharts.org docs

    name?: RechartsLineProps["name"]

    label to appear in tooltips and legends. recharts.org docs

    onAnimationEnd?: RechartsLineProps["onAnimationEnd"]
    onAnimationStart?: RechartsLineProps["onAnimationStart"]
    tooltipType?: RechartsLineProps["tooltipType"]

    what kind of tooltip to display for this line. Only seems to accept "none". Otherwise displays as normal.

    type?: RechartsLineProps["type"]

    smoothing type. Defaults to "monotone". recharts.org docs

    unit?: RechartsLineProps["unit"]

    units to show in tooltips. recharts.org docs

    xAxisId?: RechartsLineProps["xAxisId"]

    id of x axis. Used when there are multiple x axes in a single chart. recharts.org docs

    yAxisId?: RechartsLineProps["yAxisId"]

    id of y axis. Used when there are multiple y axes in a single chart. recharts.org docs