igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
58 lines (56 loc) • 1.91 kB
TypeScript
import { ILegendSeries } from "igniteui-react-core";
import { ILegendOwner } from "igniteui-react-core";
import { LegendMouseButtonEventArgs as LegendMouseButtonEventArgs_internal } from "./LegendMouseButtonEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
/**
* Provides data for legend mouse button related events.
*/
export declare class IgrLegendMouseButtonEventArgs {
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): LegendMouseButtonEventArgs_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor();
protected _provideImplementation(i: any): void;
/**
* Gets or sets a value that indicates the present state of the event handling for a routed
* event as it travels the route.
* ChartMouseButton events are not routed events; setting this property effects the underlying
* MouseButtonEvent.
*/
get handled(): boolean;
set handled(v: boolean);
/**
* 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 that was the target of the mouse event.
*/
get legendItem(): any;
set legendItem(v: any);
/**
* Provides a human readable description of the mouse button event.
*/
toString(): string;
}