igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
26 lines (25 loc) • 931 B
TypeScript
import { IgxDataContext } from "igniteui-angular-core";
import { PieSliceDataContext as PieSliceDataContext_internal } from "./PieSliceDataContext";
/**
* DataContext for a pie slice.
*/
export declare class IgxPieSliceDataContext extends IgxDataContext {
protected createImplementation(): PieSliceDataContext_internal;
/**
* @hidden
*/
get i(): PieSliceDataContext_internal;
constructor();
/**
* Gets or sets the value of this slice as a percentage of the total pie.
*/
get percentValue(): number;
set percentValue(v: number);
static ngAcceptInputType_percentValue: number | string;
/**
* Gets or sets whether this slice is an Others slice or not.
*/
get isOthersSlice(): boolean;
set isOthersSlice(v: boolean);
static ngAcceptInputType_isOthersSlice: boolean | string;
}