@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
37 lines (36 loc) • 1.46 kB
TypeScript
export declare const VisualizationTypes: {
BAR: "bar";
COLUMN: "column";
LINE: "line";
PIE: "pie";
DONUT: "donut";
TABLE: "table";
HEADLINE: "headline";
AREA: "area";
SCATTER: "scatter";
BUBBLE: "bubble";
HEATMAP: "heatmap";
GEO: "geo";
PUSHPIN: "pushpin";
COMBO: "combo";
COMBO2: "combo2";
HISTOGRAM: "histogram";
BULLET: "bullet";
TREEMAP: "treemap";
WATERFALL: "waterfall";
FUNNEL: "funnel";
PARETO: "pareto";
ALLUVIAL: "alluvial";
XIRR: "xirr";
};
export declare type ChartType = "bar" | "column" | "pie" | "line" | "area" | "donut" | "scatter" | "bubble" | "heatmap" | "geo" | "pushpin" | "combo" | "combo2" | "histogram" | "bullet" | "treemap" | "waterfall" | "funnel" | "pareto" | "alluvial";
export declare type GeoType = "pushpin";
export declare type HeadlineType = "headline";
export declare type XirrType = "xirr";
export declare type TableType = "table";
export declare type VisType = ChartType | GeoType | HeadlineType | TableType | XirrType;
export declare type ChartElementType = "slice" | "bar" | "point" | "label" | "cell" | "target" | "primary" | "comparative";
export declare type GeoElementType = "pushpin";
export declare type HeadlineElementType = "primaryValue" | "secondaryValue";
export declare type TableElementType = "cell";
export declare type VisElementType = ChartElementType | GeoElementType | HeadlineElementType | TableElementType;