igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
36 lines (35 loc) • 1.07 kB
TypeScript
import { CalloutContentUpdatingEventArgs as CalloutContentUpdatingEventArgs_internal } from "./CalloutContentUpdatingEventArgs";
/**
* Represents event arguments for updating content of callout layer
*/
export declare class IgxCalloutContentUpdatingEventArgs {
protected createImplementation(): CalloutContentUpdatingEventArgs_internal;
protected _implementation: any;
/**
* @hidden
*/
get i(): CalloutContentUpdatingEventArgs_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 or sets content displayed by callout layer
*/
get content(): any;
set content(v: any);
}