igniteui-react-core
Version:
Ignite UI React Core.
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 ev;
get dateTimeMemberPath(): string;
set dateTimeMemberPath(a: string);
private ew;
get labellingMode(): string;
set labellingMode(a: string);
private ep;
get labelFormats(): TimeAxisLabelFormatDescription[];
set labelFormats(a: TimeAxisLabelFormatDescription[]);
private es;
get minimumValue(): Date;
set minimumValue(a: Date);
private er;
get maximumValue(): Date;
set maximumValue(a: Date);
}