igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
27 lines (26 loc) • 853 B
TypeScript
import { CategoryXAxisDescription } from "./CategoryXAxisDescription";
import { TimeAxisLabelFormatDescription } from "./TimeAxisLabelFormatDescription";
import { Type } from "./type";
/**
* @hidden
*/
export declare class OrdinalTimeXAxisDescription extends CategoryXAxisDescription {
static $t: Type;
protected get_type(): string;
constructor();
private e3;
get dateTimeMemberPath(): string;
set dateTimeMemberPath(a: string);
private e4;
get labellingMode(): string;
set labellingMode(a: string);
private ex;
get labelFormats(): TimeAxisLabelFormatDescription[];
set labelFormats(a: TimeAxisLabelFormatDescription[]);
private e0;
get minimumValue(): Date;
set minimumValue(a: Date);
private ez;
get maximumValue(): Date;
set maximumValue(a: Date);
}