UNPKG

igniteui-webcomponents-charts

Version:

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

15 lines (14 loc) 472 B
import { EventArgs, Type } from "igniteui-webcomponents-core"; import { UserAnnotationInformation } from "./UserAnnotationInformation"; /** * @hidden */ export declare class UserAnnotationToolTipContentUpdatingEventArgs extends EventArgs { static $t: Type; private _annotationInfo; get annotationInfo(): UserAnnotationInformation; set annotationInfo(a: UserAnnotationInformation); private _content; get content(): any; set content(a: any); }