igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
24 lines (23 loc) • 684 B
TypeScript
import { LabelClickEventArgs as LabelClickEventArgs_internal } from "./LabelClickEventArgs";
/**
* Contains PieChart label click event data.
*/
export declare class IgcLabelClickEventArgs {
protected _implementation: any;
/**
* @hidden
*/
get i(): LabelClickEventArgs_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
/**
* Gets the slice data context.
*/
get item(): any;
/**
* Gets and sets whether or not the owning pie chart should fire its SliceClick event
*/
get allowSliceClick(): boolean;
set allowSliceClick(v: boolean);
}