UNPKG

igniteui-webcomponents-charts

Version:

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

32 lines (31 loc) 1.08 kB
import { IgcSeriesLayerPropertyOverlayCollection } from "./igc-series-layer-property-overlay-collection"; import { SeriesLayer as SeriesLayer_internal } from "./SeriesLayer"; /** * Represents an axis annotation */ export declare class IgcSeriesLayer { protected createImplementation(): SeriesLayer_internal; protected _implementation: any; /** * @hidden */ get i(): SeriesLayer_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; get transitionOutIsInProgress(): boolean; /** * Gets or sets the ZIndex to use for layering the series layers. */ get zIndex(): number; set zIndex(v: number); private _propertyOverlays; /** * Gets the current extra layers for the series. */ get propertyOverlays(): IgcSeriesLayerPropertyOverlayCollection; set propertyOverlays(v: IgcSeriesLayerPropertyOverlayCollection); findByName(name: string): any; playTransitionOutAndRemove(): void; playTransitionIn(): void; }