UNPKG

igniteui-react-charts

Version:

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

36 lines (35 loc) 1.26 kB
import { IgrSeriesLayerPropertyOverlayCollection } from "./igr-series-layer-property-overlay-collection"; import { SeriesLayer as SeriesLayer_internal } from "./SeriesLayer"; import { ContentChildrenManager } from "igniteui-react-core"; /** * Represents an axis annotation */ export declare class IgrSeriesLayer { protected createImplementation(): SeriesLayer_internal; protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): SeriesLayer_internal; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; 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(): IgrSeriesLayerPropertyOverlayCollection; set propertyOverlays(v: IgrSeriesLayerPropertyOverlayCollection); findByName(name: string): any; playTransitionOutAndRemove(): void; playTransitionIn(): void; }