UNPKG

igniteui-react-charts

Version:

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

50 lines (48 loc) 1.52 kB
import { ILegendSeries } from "igniteui-react-core"; import { ILegendOwner } from "igniteui-react-core"; import { LegendMouseEventArgs as LegendMouseEventArgs_internal } from "./LegendMouseEventArgs"; import { ContentChildrenManager } from "igniteui-react-core"; /** * Provides data for legend mouse button related events. */ export declare class IgrLegendMouseEventArgs { protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): LegendMouseEventArgs_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(): ILegendSeries; set series(v: ILegendSeries); /** * Gets the Chart associated with the current event. */ get chart(): ILegendOwner; set chart(v: ILegendOwner); /** * The legend item in context. */ get legendItem(): any; set legendItem(v: any); /** * Provides a human readable description of the mouse button event. */ toString(): string; }