UNPKG

igniteui-react-charts

Version:

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

26 lines (25 loc) 1.01 kB
import { IgrUserAxisAnnotation } from "./igr-user-axis-annotation"; import { UserAxisAnnotationStylingEventArgs as UserAxisAnnotationStylingEventArgs_internal } from "./UserAxisAnnotationStylingEventArgs"; import { ContentChildrenManager } from "igniteui-react-core"; /** * Represents the event arguments for the UserAxisAnnotation styling events. */ export declare class IgrUserAxisAnnotationStylingEventArgs { protected createImplementation(): UserAxisAnnotationStylingEventArgs_internal; protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): UserAxisAnnotationStylingEventArgs_internal; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; constructor(); protected _provideImplementation(i: any): void; /** * The annotation to style. */ get annotation(): IgrUserAxisAnnotation; set annotation(v: IgrUserAxisAnnotation); }