UNPKG

igniteui-react-charts

Version:

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

23 lines (22 loc) 557 B
import { Type } from "igniteui-react-core"; /** * An enum representing available sweep directions for the pie chart. */ export declare enum PieChartSweepDirection { /** * Let the component decide the sweep direction. */ Auto = 0, /** * The pie slices are arranged in a clockwise order from the 0 angle. */ Clockwise = 1, /** * The pie slices are arranged in a counterclockwise order from the 0 angle. */ Counterclockwise = 2 } /** * @hidden */ export declare let PieChartSweepDirection_$type: Type;