igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
22 lines (21 loc) • 807 B
TypeScript
import { IgcUserAxisAnnotation } from "./igc-user-axis-annotation";
import { UserAxisAnnotationStylingEventArgs as UserAxisAnnotationStylingEventArgs_internal } from "./UserAxisAnnotationStylingEventArgs";
/**
* Represents the event arguments for the UserAxisAnnotation styling events.
*/
export declare class IgcUserAxisAnnotationStylingEventArgs {
protected createImplementation(): UserAxisAnnotationStylingEventArgs_internal;
protected _implementation: any;
/**
* @hidden
*/
get i(): UserAxisAnnotationStylingEventArgs_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
/**
* The annotation to style.
*/
get annotation(): IgcUserAxisAnnotation;
set annotation(v: IgcUserAxisAnnotation);
}