Sha256: 154259a008d7e28190b42410de145c06df50dd00abc004f0c71e81f5d180840d

Contents?: true

Size: 1.03 KB

Versions: 2

Compression:

Stored size: 1.03 KB

Contents

declare type LineGraphProps = {
    align?: "left" | "right" | "center";
    axisTitle?: string;
    dark?: Boolean;
    xAxisCategories: [];
    yAxisMin: number;
    yAxisMax: number;
    className?: string;
    chartData: {
        name: string;
        data: number[];
    }[];
    gradient?: boolean;
    id: string;
    pointStart: number;
    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 LineGraph: ({ aria, data, align, className, dark, gradient, type, id, legend, toggleLegendClick, layout, verticalAlign, x, y, axisTitle, xAxisCategories, yAxisMin, yAxisMax, chartData, pointStart, subTitle, title, height, colors, ...props }: LineGraphProps) => JSX.Element;
export default LineGraph;

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