igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
47 lines (46 loc) • 1.42 kB
TypeScript
import { IgxSeriesComponent } from "./igx-series-component";
import { CalloutLabelUpdatingEventArgs as CalloutLabelUpdatingEventArgs_internal } from "./CalloutLabelUpdatingEventArgs";
/**
* Represents event arguments for updating label of callout layer
*/
export declare class IgxCalloutLabelUpdatingEventArgs {
protected createImplementation(): CalloutLabelUpdatingEventArgs_internal;
protected _implementation: any;
/**
* @hidden
*/
get i(): CalloutLabelUpdatingEventArgs_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
/**
* Gets data X-value associated with callout layer
*/
get xValue(): any;
set xValue(v: any);
/**
* Gets data Y-value associated with callout layer
*/
get yValue(): any;
set yValue(v: any);
/**
* Gets data item associated with callout layer
*/
get item(): any;
set item(v: any);
/**
* Gets series associated with callout item, if available
*/
get series(): IgxSeriesComponent;
set series(v: IgxSeriesComponent);
/**
* Gets series name associated 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);
}