Sha256: e9c49c23fc17e4481a47428bc15ae17cfa8d1131d6fefd88e2e726ec12e9094f

Contents?: true

Size: 1.03 KB

Versions: 2

Compression:

Stored size: 1.03 KB

Contents

import React from "react";
declare type BarGraphProps = {
    align?: "left" | "right" | "center";
    axisTitle: string;
    dark?: boolean;
    xAxisCategories: [];
    yAxisMin: number;
    yAxisMax: number;
    chartData: {
        name: string;
        data: number[];
    }[];
    className?: string;
    id: any;
    pointStart: number | any;
    subTitle?: string;
    title: string;
    type?: string;
    legend?: boolean;
    toggleLegendClick?: boolean;
    height?: string;
    colors: string[];
    layout?: "horizontal" | "vertical" | "proximate";
    verticalAlign?: "top" | "middle" | "bottom";
    x?: number;
    y?: number;
    aria?: {
        [key: string]: string;
    };
    data?: {
        [key: string]: string;
    };
};
declare const BarGraph: ({ aria, data, align, axisTitle, dark, chartData, className, colors, id, pointStart, subTitle, type, title, xAxisCategories, yAxisMin, yAxisMax, legend, toggleLegendClick, height, layout, verticalAlign, x, y, ...props }: BarGraphProps) => React.ReactElement;
export default BarGraph;

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_bar_graph/_bar_graph.d.ts
playbook_ui-13.12.0.pre.alpha.PLAY1081exporttypes1608 app/pb_kits/playbook/pb_bar_graph/_bar_graph.d.ts