igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
19 lines (18 loc) • 431 B
TypeScript
import { Type } from "igniteui-react-core";
/**
* Describes available types of Spline calculations.
*/
export declare enum SplineType {
/**
* Calculates the spline using a natural spline calculation formula.
*/
Natural = 0,
/**
* Calculated the spline using a clamped spline calculation formula.
*/
Clamped = 1
}
/**
* @hidden
*/
export declare let SplineType_$type: Type;