igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
42 lines (41 loc) • 1.25 kB
TypeScript
import { IgRect } from "igniteui-react-core";
import { IgPoint } from "igniteui-react-core";
import { FunnelSliceEventArgs as FunnelSliceEventArgs_internal } from "./FunnelSliceEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
/**
* Information about the clicked slice.
*/
export declare class IgrFunnelSliceEventArgs {
protected createImplementation(): FunnelSliceEventArgs_internal;
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): FunnelSliceEventArgs_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor();
protected _provideImplementation(i: any): void;
/**
* The index of the slice.
*/
get index(): number;
set index(v: number);
/**
* The bounds of the slice.
*/
get bounds(): IgRect;
set bounds(v: IgRect);
/**
* The data item for the clicked slice.
*/
get item(): any;
set item(v: any);
/**
* The position of the mouse relative to the funnel chart.
*/
get position(): IgPoint;
set position(v: IgPoint);
}