UNPKG

igniteui-react-charts

Version:

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

64 lines (61 loc) 2.19 kB
import { IgPoint } from "igniteui-react-core"; import { IgrSeries } from "./igr-series"; import { IgrSeriesViewer } from "./igr-series-viewer"; import { ChartMouseEventArgs as ChartMouseEventArgs_internal } from "./ChartMouseEventArgs"; import { ContentChildrenManager } from "igniteui-react-core"; /** * Provides data for IgxDataChartComponent mouse button related events. */ export declare class IgrChartMouseEventArgs { protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): ChartMouseEventArgs_internal; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; constructor(); protected _provideImplementation(i: any): void; /** * Gets a reference to the object that raised the event. */ get originalSource(): any; /** * Gets the ItemsSource item associated with the current event. */ get item(): any; set item(v: any); /** * Gets the series associated with the current event. */ get series(): IgrSeries; set series(v: IgrSeries); /** * Gets the mouse position relative to the plot area. */ get plotAreaPosition(): IgPoint; set plotAreaPosition(v: IgPoint); /** * Gets the mouse position relative to the chart. */ get chartPosition(): IgPoint; /** * Gets the Chart associated with the current event. */ get chart(): IgrSeriesViewer; set chart(v: IgrSeriesViewer); /** * Provides a human readable description of the mouse button event. */ toString(): string; /** * Returns the x- and y- coordinates of the mouse pointer position, optionally evaluated * against the origin of a supplied UIElement. * @param relativeTo * Any UIElement derived object that is contained by the the engine plug-in * and connected to the object tree. To specify the object relative to the overall the engine * coordinate system, use a relativeTo value of null. */ getPosition(relativeTo: any): IgPoint; }