igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
26 lines (25 loc) • 1.02 kB
TypeScript
import { IgrUserPointAnnotation } from "./igr-user-point-annotation";
import { UserPointAnnotationStylingEventArgs as UserPointAnnotationStylingEventArgs_internal } from "./UserPointAnnotationStylingEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
/**
* Represents the event arguments for the UserAxisAnnotation styling events.
*/
export declare class IgrUserPointAnnotationStylingEventArgs {
protected createImplementation(): UserPointAnnotationStylingEventArgs_internal;
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): UserPointAnnotationStylingEventArgs_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor();
protected _provideImplementation(i: any): void;
/**
* The annotation to style.
*/
get annotation(): IgrUserPointAnnotation;
set annotation(v: IgrUserPointAnnotation);
}