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 { IgrUserSliceAnnotation } from "./igr-user-slice-annotation";
import { UserSliceAnnotationStylingEventArgs as UserSliceAnnotationStylingEventArgs_internal } from "./UserSliceAnnotationStylingEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
/**
* Represents the event arguments for the UserAxisAnnotation styling events.
*/
export declare class IgrUserSliceAnnotationStylingEventArgs {
protected createImplementation(): UserSliceAnnotationStylingEventArgs_internal;
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): UserSliceAnnotationStylingEventArgs_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor();
protected _provideImplementation(i: any): void;
/**
* The annotation to style.
*/
get annotation(): IgrUserSliceAnnotation;
set annotation(v: IgrUserSliceAnnotation);
}