@gooddata/react-components
Version:
GoodData React Components
13 lines (11 loc) • 348 B
text/typescript
export enum VisualizationTypes {
BAR = 'bar',
COLUMN = 'column',
LINE = 'line',
PIE = 'pie',
TABLE = 'table'
}
export type ChartType = 'line' | 'bar' | 'column' | 'pie';
export type VisType = ChartType | 'table';
export type ChartElementType = 'slice' | 'bar' | 'point';
export type VisElementType = ChartElementType | 'cell';