igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
31 lines (30 loc) • 785 B
TypeScript
import { Type } from "igniteui-angular-core";
/**
* Describes available types of speeds used when transitioning in a series.
*/
export declare enum TransitionOutSpeedType {
/**
* A speed type is automatically selected.
*/
Auto = 0,
/**
* All speeds are normal, data points will arrive at the same time.
*/
Normal = 1,
/**
* Data points will arrive later if their value is further from the start point.
*/
ValueScaled = 2,
/**
* Data points will arrive later if their index is further from the axis origin.
*/
IndexScaled = 3,
/**
* Data points will arrive at random times.
*/
Random = 4
}
/**
* @hidden
*/
export declare let TransitionOutSpeedType_$type: Type;