igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
21 lines (20 loc) • 938 B
TypeScript
import { IgxUserAnnotationInformation } from "./igx-user-annotation-information";
import { UserAnnotationToolTipContentUpdatingEventArgs as UserAnnotationToolTipContentUpdatingEventArgs_internal } from "./UserAnnotationToolTipContentUpdatingEventArgs";
/**
* Information about the user annotation content which is being created or updated.
*/
export declare class IgxUserAnnotationToolTipContentUpdatingEventArgs {
protected createImplementation(): UserAnnotationToolTipContentUpdatingEventArgs_internal;
protected _implementation: any;
/**
* @hidden
*/
get i(): UserAnnotationToolTipContentUpdatingEventArgs_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
get annotationInfo(): IgxUserAnnotationInformation;
set annotationInfo(v: IgxUserAnnotationInformation);
get content(): any;
set content(v: any);
}