igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
38 lines (37 loc) • 1.02 kB
TypeScript
import { IgRect } from "igniteui-webcomponents-core";
import { IgPoint } from "igniteui-webcomponents-core";
import { FunnelSliceEventArgs as FunnelSliceEventArgs_internal } from "./FunnelSliceEventArgs";
/**
* Information about the clicked slice.
*/
export declare class IgcFunnelSliceEventArgs {
protected createImplementation(): FunnelSliceEventArgs_internal;
protected _implementation: any;
/**
* @hidden
*/
get i(): FunnelSliceEventArgs_internal;
private onImplementationCreated;
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);
}