Sha256: 26180d3e76aa05d260d56b61754cc0f75cac131a617beed80df3d943f51e9e15

Contents?: true

Size: 1.16 KB

Versions: 2

Compression:

Stored size: 1.16 KB

Contents

declare type CircleChartProps = {
    align?: "left" | "right" | "center";
    aria: {
        [key: string]: string;
    };
    chartData?: [];
    children?: Node;
    className?: string;
    colors?: string[];
    dark?: Boolean;
    data?: Object;
    dataLabelHtml?: string;
    dataLabels?: boolean;
    height?: string;
    id?: string;
    innerSize?: "sm" | "md" | "lg" | "none";
    legend?: boolean;
    maxPointSize?: number;
    minPointSize?: number;
    rounded?: boolean;
    startAngle?: number;
    style?: string;
    title?: string;
    tooltipHtml: string;
    useHtml?: boolean;
    zMin?: number;
    layout?: "horizontal" | "vertical" | "proximate";
    verticalAlign?: "top" | "middle" | "bottom";
    x?: number;
    y?: number;
    borderColor?: string;
    borderWidth?: number;
};
declare const CircleChart: ({ align, aria, rounded, borderColor, borderWidth, chartData, children, className, colors, dark, data, dataLabelHtml, dataLabels, height, id, innerSize, legend, maxPointSize, minPointSize, startAngle, style, title, tooltipHtml, useHtml, zMin, layout, verticalAlign, x, y, ...props }: CircleChartProps) => JSX.Element;
export default CircleChart;

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
playbook_ui-13.12.0.pre.alpha.PLAY1081exporttypes1609 app/pb_kits/playbook/pb_circle_chart/_circle_chart.d.ts
playbook_ui-13.12.0.pre.alpha.PLAY1081exporttypes1608 app/pb_kits/playbook/pb_circle_chart/_circle_chart.d.ts