Hex Core JS
    Preparing search index...

    Type Alias BarProps

    type BarProps = {
        animationBegin?: RechartsBarProps["animationBegin"];
        animationDuration?: RechartsBarProps["animationDuration"];
        animationEasing?: RechartsBarProps["animationEasing"];
        barsize?: RechartsBarProps["barSize"];
        className?: RechartsBarProps["className"];
        hide?: RechartsBarProps["hide"];
        isAnimationActive?: RechartsBarProps["isAnimationActive"];
        legendType?: RechartsBarProps["legendType"];
        maxBarSize?: RechartsBarProps["maxBarSize"];
        minPointSize?: RechartsBarProps["minPointSize"];
        name?: RechartsBarProps["name"];
        onAnimationEnd?: RechartsBarProps["onAnimationEnd"];
        onAnimationStart?: RechartsBarProps["onAnimationStart"];
        stackId?: RechartsBarProps["stackId"];
        tooltipType?: RechartsBarProps["tooltipType"];
        unit?: RechartsBarProps["unit"];
        xAxisId?: RechartsBarProps["xAxisId"];
        yAxisId?: RechartsBarProps["yAxisId"];
    }
    Index

    Properties

    animationBegin?: RechartsBarProps["animationBegin"]
    animationDuration?: RechartsBarProps["animationDuration"]
    animationEasing?: RechartsBarProps["animationEasing"]
    barsize?: RechartsBarProps["barSize"]

    The width (or height if horizontal) of each bar. Warning This prop behaves strangely with multiple bars recharts.org docs

    className?: RechartsBarProps["className"]

    className attached to the collection of bars.

    hide?: RechartsBarProps["hide"]

    Whether to hide the current line.

    isAnimationActive?: RechartsBarProps["isAnimationActive"]

    Whether to animate values. recharts.org docs

    legendType?: RechartsBarProps["legendType"]

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

    maxBarSize?: RechartsBarProps["maxBarSize"]

    The maximum width (or height if horizontal) of each bar. Note Prefer this prop over barSize. recharts.org docs

    minPointSize?: RechartsBarProps["minPointSize"]

    The minimum width (or height) required to display a label. recharts.org docs

    name?: RechartsBarProps["name"]

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

    onAnimationEnd?: RechartsBarProps["onAnimationEnd"]
    onAnimationStart?: RechartsBarProps["onAnimationStart"]
    stackId?: RechartsBarProps["stackId"]

    The id to use for grouping bars together. recharts.org docs

    tooltipType?: RechartsBarProps["tooltipType"]

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

    unit?: RechartsBarProps["unit"]

    units to show in tooltips. recharts.org docs

    xAxisId?: RechartsBarProps["xAxisId"]

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

    yAxisId?: RechartsBarProps["yAxisId"]

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