igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
23 lines (22 loc) • 581 B
TypeScript
import { Type } from "igniteui-angular-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;