UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

24 lines (23 loc) 805 B
import { IgrDataContext } from "igniteui-react-core"; import { PieSliceDataContext as PieSliceDataContext_internal } from "./PieSliceDataContext"; /** * DataContext for a pie slice. */ export declare class IgrPieSliceDataContext extends IgrDataContext { 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); /** * Gets or sets whether this slice is an Others slice or not. */ get isOthersSlice(): boolean; set isOthersSlice(v: boolean); }