igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
42 lines (41 loc) • 1.31 kB
TypeScript
import { IgcSeriesComponent } from "./igc-series-component";
import { CalloutSeriesSelectingEventArgs as CalloutSeriesSelectingEventArgs_internal } from "./CalloutSeriesSelectingEventArgs";
/**
* Represents event arguments for selecting callout layer
*/
export declare class IgcCalloutSeriesSelectingEventArgs {
protected createImplementation(): CalloutSeriesSelectingEventArgs_internal;
protected _implementation: any;
/**
* @hidden
*/
get i(): CalloutSeriesSelectingEventArgs_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
/**
* Gets data X-value assositated with callout layer
*/
get xValue(): any;
set xValue(v: any);
/**
* Gets data Y-value assositated with callout layer
*/
get yValue(): any;
set yValue(v: any);
/**
* Gets data item assositated with callout layer
*/
get item(): any;
set item(v: any);
/**
* Gets or sets series object assositated with callout layer
*/
get series(): IgcSeriesComponent;
set series(v: IgcSeriesComponent);
/**
* Gets or sets series name assositated with callout layer
*/
get seriesName(): string;
set seriesName(v: string);
}