UNPKG

igniteui-webcomponents-charts

Version:

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

58 lines (57 loc) 2.2 kB
import { TimeAxisBreak } from "./TimeAxisBreak"; import { IgcHTMLElement } from "igniteui-webcomponents-core"; export declare class IgcTimeAxisBreakComponent extends IgcHTMLElement { protected _implementation: any; get i(): TimeAxisBreak; private onImplementationCreated; constructor(); protected createImplementation(): TimeAxisBreak; private _renderer; private _provideRenderer; static _createFromInternal(internal: any): IgcTimeAxisBreakComponent; 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 _observedAttributesIgcTimeAxisBreakComponent; 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 start time of the axis break. * * Use `Start` property for the start time of the axis break. */ get start(): Date; set start(v: Date); /** * The end time of the axis break. * * Use `End` property for the end time of the axis break. */ get end(): Date; set end(v: Date); /** * The interval at which to repeat this break, expressed as a TimeSpan. * * Use `Interval` property to se the interval at which to repeat this break, expressed as a TimeSpan. */ get interval(): number; set interval(v: number); 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; }