igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
76 lines (75 loc) • 2.06 kB
TypeScript
import { IgRect } from "igniteui-react-core";
import { IgPoint } from "igniteui-react-core";
import { SliceClickEventArgs as SliceClickEventArgs_internal } from "./SliceClickEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
/**
* Contains PieChart click event data.
*/
export declare class IgrSliceClickEventArgs {
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): SliceClickEventArgs_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor();
protected _provideImplementation(i: any): void;
/**
* Gets or sets whether the slice is selected.
*/
get isSelected(): boolean;
set isSelected(v: boolean);
/**
* Gets or sets whether the slice is exploded.
*/
get isExploded(): boolean;
set isExploded(v: boolean);
/**
* Gets whether the current slice is part of the others slice.
*/
get isOthersSlice(): boolean;
/**
* Gets the index of the slice that was clicked.
*/
get index(): number;
/**
* Gets the slice data context.
*/
get dataContext(): any;
/**
* Holds a reference to the original event that triggered slice click.
*/
get originalEvent(): any;
set originalEvent(v: any);
/**
* Gets the origin location of the slice.
*/
get origin(): IgPoint;
/**
* Gets the radius of the slice.
*/
get radius(): number;
/**
* Gets the bounds of the slice.
*/
get bounds(): IgRect;
/**
* Gets the start angle of the slice.
*/
get startAngle(): number;
/**
* Gets the end angle of the slice.
*/
get endAngle(): number;
/**
* Gets the fill color of the slice.
*/
get fill(): string;
/**
* Gets the outline color of the slice.
*/
get outline(): string;
}