igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
23 lines (22 loc) • 538 B
TypeScript
import { Type } from "igniteui-angular-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;