UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

59 lines (58 loc) 2.29 kB
import { TimeAxisInterval } from "./TimeAxisInterval"; import { TimeAxisIntervalType } from "./TimeAxisIntervalType"; import { IgcHTMLElement } from "igniteui-webcomponents-core"; export declare class IgcTimeAxisIntervalComponent extends IgcHTMLElement { protected _implementation: any; get i(): TimeAxisInterval; private onImplementationCreated; constructor(); protected createImplementation(): TimeAxisInterval; private _renderer; private _provideRenderer; static _createFromInternal(internal: any): IgcTimeAxisIntervalComponent; private _settingAttributes; protected _attached: boolean; private _queuedSetAttributes; protected _enqueueSetAttribute(attrName: string, attrValue: string): void; protected _flushQueuedAttributes(): void; protected _a(attrName: string, attrValue: any): void; connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcTimeAxisIntervalComponent; static get observedAttributes(): string[]; private _updatingFromAttribute; attributeChangedCallback(name: string, oldValue: string, newValue: string): void; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * The visible axis range at which to apply this interval. * * Use `Range` property for the visible axis range at which to apply this interval. */ get range(): number; set range(v: number); /** * The interval, expressed as a multiple of IntervalType. * * Use the `Interval` property expressed as a multiple of IntervalType. */ get interval(): number; set interval(v: number); /** * The unit of time for this interval. * * The `IntervalType` is the unit of time for this interval. */ get intervalType(): TimeAxisIntervalType; set intervalType(v: TimeAxisIntervalType); findByName(name: string): any; protected __p: string; protected _hasUserValues: Set<string>; protected get hasUserValues(): Set<string>; protected __m(propertyName: string): void; protected _stylingContainer: any; protected _stylingParent: any; protected _inStyling: boolean; protected _styling(container: any, component: any, parent?: any): void; }