UNPKG

igniteui-react-charts

Version:

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

34 lines (33 loc) 1.14 kB
import { IgPoint } from "igniteui-react-core"; import { IgrAxis } from "./igr-axis"; import { AxisMouseEventArgs as AxisMouseEventArgs_internal } from "./AxisMouseEventArgs"; import { ContentChildrenManager } from "igniteui-react-core"; export declare class IgrAxisMouseEventArgs { protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): AxisMouseEventArgs_internal; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; constructor(); protected _provideImplementation(i: any): void; get axis(): IgrAxis; set axis(v: IgrAxis); get axisValue(): number; set axisValue(v: number); get axisDateValue(): Date; set axisDateValue(v: Date); get chartPosition(): IgPoint; set chartPosition(v: IgPoint); get plotAreaPosition(): IgPoint; set plotAreaPosition(v: IgPoint); get worldPosition(): IgPoint; set worldPosition(v: IgPoint); get label(): string; set label(v: string); get labelContext(): any; set labelContext(v: any); }