igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
23 lines (22 loc) • 514 B
TypeScript
import { Type } from "igniteui-react-core";
/**
* Enum representing a unit of time.
*/
export declare enum TimeAxisLabellingMode {
/**
* LabellingMode is decided automatically.
*/
Auto = 0,
/**
* Labels are presented in a uniform format based on visible interval.
*/
Normal = 1,
/**
* Labels are shortened by eliminating repeated elements compared to prior values.
*/
Compressed = 2
}
/**
* @hidden
*/
export declare let TimeAxisLabellingMode_$type: Type;