igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
21 lines (20 loc) • 492 B
TypeScript
import { EventArgs, Point, Type } from "igniteui-angular-core";
import { Rect } from "igniteui-angular-core";
/**
* @hidden
*/
export declare class FunnelSliceEventArgs extends EventArgs {
static $t: Type;
private b;
get index(): number;
set index(a: number);
private h;
get bounds(): Rect;
set bounds(a: Rect);
private d;
get item(): any;
set item(a: any);
private f;
get position(): Point;
set position(a: Point);
}