Hex Core JS
    Preparing search index...

    Type Alias PieProps

    type PieProps = {
        activeShape?: RechartsPieProps["activeShape"];
        animationBegin?: RechartsPieProps["animationBegin"];
        animationDuration?: RechartsPieProps["animationDuration"];
        animationEasing?: RechartsPieProps["animationEasing"];
        blendStroke?: RechartsPieProps["blendStroke"];
        className?: RechartsPieProps["className"];
        endAngle?: RechartsPieProps["endAngle"];
        hide?: RechartsPieProps["hide"];
        innerRadius?: RechartsPieProps["innerRadius"];
        isAnimationActive?: RechartsPieProps["isAnimationActive"];
        label?: RechartsPieProps["label"];
        labelLine?: RechartsPieProps["labelLine"];
        legendType?: RechartsPieProps["legendType"];
        nameKey?: RechartsPieProps["nameKey"];
        onAnimationEnd?: RechartsPieProps["onAnimationEnd"];
        onAnimationStart?: RechartsPieProps["onAnimationStart"];
        outerRadius?: RechartsPieProps["outerRadius"];
        paddingAngle?: RechartsPieProps["paddingAngle"];
        startAngle?: RechartsPieProps["startAngle"];
        tooltipType?: RechartsPieProps["tooltipType"];
    }
    Index

    Properties

    activeShape?: RechartsPieProps["activeShape"]

    The shape of the active pie slice See this example.

    animationBegin?: RechartsPieProps["animationBegin"]
    animationDuration?: RechartsPieProps["animationDuration"]
    animationEasing?: RechartsPieProps["animationEasing"]
    blendStroke?: RechartsPieProps["blendStroke"]

    Whether the individual slices should be surrounded by a stroke

    className?: RechartsPieProps["className"]

    className attached to each area

    endAngle?: RechartsPieProps["endAngle"]

    The endling angle for the pie slices (in degrees)

    hide?: RechartsPieProps["hide"]

    Whether to hide the current area.

    innerRadius?: RechartsPieProps["innerRadius"]

    The inner radius of the pie chart. Useful for making "donuts"

    isAnimationActive?: RechartsPieProps["isAnimationActive"]

    Whether to animate values. recharts.org docs

    label?: RechartsPieProps["label"]

    A boolean indicating whether a label should appear or not Or an object with key offsetRadius: number; Or a component to render for the label

    labelLine?: RechartsPieProps["labelLine"]

    A boolean indicating whether a line connecting the pie chart to a label should appear or not Or a component to render for the line

    legendType?: RechartsPieProps["legendType"]

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

    nameKey?: RechartsPieProps["nameKey"]

    key to use for labels to appear in tooltips and legends. recharts.org docs

    onAnimationEnd?: RechartsPieProps["onAnimationEnd"]
    onAnimationStart?: RechartsPieProps["onAnimationStart"]
    outerRadius?: RechartsPieProps["outerRadius"]

    The outer radius of the pie chart.

    paddingAngle?: RechartsPieProps["paddingAngle"]

    The padding between slices (in degrees)

    startAngle?: RechartsPieProps["startAngle"]

    The starting angle for the pie slices (in degrees)

    tooltipType?: RechartsPieProps["tooltipType"]

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