UNPKG

igniteui-webcomponents-charts

Version:

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

36 lines (35 loc) 1.07 kB
import { CalloutContentUpdatingEventArgs as CalloutContentUpdatingEventArgs_internal } from "./CalloutContentUpdatingEventArgs"; /** * Represents event arguments for updating content of callout layer */ export declare class IgcCalloutContentUpdatingEventArgs { 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); }