igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
42 lines (41 loc) • 1.3 kB
TypeScript
import { IgxSeriesComponent } from "./igx-series-component";
import { CalloutSeriesSelectingEventArgs as CalloutSeriesSelectingEventArgs_internal } from "./CalloutSeriesSelectingEventArgs";
/**
* Represents event arguments for selecting callout layer
*/
export declare class IgxCalloutSeriesSelectingEventArgs {
protected createImplementation(): CalloutSeriesSelectingEventArgs_internal;
protected _implementation: any;
/**
* @hidden
*/
get i(): CalloutSeriesSelectingEventArgs_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
/**
* Gets data X-value associated with callout layer
*/
get xValue(): any;
set xValue(v: any);
/**
* Gets data Y-value associated with callout layer
*/
get yValue(): any;
set yValue(v: any);
/**
* Gets data item associated with callout layer
*/
get item(): any;
set item(v: any);
/**
* Gets or sets series object associated with callout layer
*/
get series(): IgxSeriesComponent;
set series(v: IgxSeriesComponent);
/**
* Gets or sets series name associated with callout layer
*/
get seriesName(): string;
set seriesName(v: string);
}