UNPKG

igniteui-webcomponents-charts

Version:

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

47 lines (46 loc) 1.43 kB
import { IgcSeriesComponent } from "./igc-series-component"; import { CalloutLabelUpdatingEventArgs as CalloutLabelUpdatingEventArgs_internal } from "./CalloutLabelUpdatingEventArgs"; /** * Represents event arguments for updating label of callout layer */ export declare class IgcCalloutLabelUpdatingEventArgs { protected createImplementation(): CalloutLabelUpdatingEventArgs_internal; protected _implementation: any; /** * @hidden */ get i(): CalloutLabelUpdatingEventArgs_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; /** * Gets data X-value assositated with callout layer */ get xValue(): any; set xValue(v: any); /** * Gets data Y-value assositated with callout layer */ get yValue(): any; set yValue(v: any); /** * Gets data item assositated with callout layer */ get item(): any; set item(v: any); /** * Gets series assositated with callout item, if available */ get series(): IgcSeriesComponent; set series(v: IgcSeriesComponent); /** * Gets series name assositated with callout item, if available */ get seriesName(): string; set seriesName(v: string); /** * Gets or sets label displayed by callout layer */ get label(): any; set label(v: any); }