igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
37 lines (35 loc) • 1.17 kB
TypeScript
import { IgcSeriesComponent } from "./igc-series-component";
import { IgcSeriesViewerComponent } from "./igc-series-viewer-component";
import { ChartCursorEventArgs as ChartCursorEventArgs_internal } from "./ChartCursorEventArgs";
/**
* Provides data for IgxDataChartComponent mouse button related events.
*/
export declare class IgcChartCursorEventArgs {
protected _implementation: any;
/**
* @hidden
*/
get i(): ChartCursorEventArgs_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
/**
* 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(): IgcSeriesComponent;
set series(v: IgcSeriesComponent);
/**
* Gets the Chart associated with the current event.
*/
get seriesViewer(): IgcSeriesViewerComponent;
set seriesViewer(v: IgcSeriesViewerComponent);
/**
* Provides a human readable expresion of the event arguments.
*/
toString(): string;
}