igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
46 lines (44 loc) • 1.31 kB
TypeScript
import { ILegendSeries } from "igniteui-angular-core";
import { ILegendOwner } from "igniteui-angular-core";
import { LegendMouseEventArgs as LegendMouseEventArgs_internal } from "./LegendMouseEventArgs";
/**
* Provides data for legend mouse button related events.
*/
export declare class IgxLegendMouseEventArgs {
protected _implementation: any;
/**
* @hidden
*/
get i(): LegendMouseEventArgs_internal;
private onImplementationCreated;
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;
}