igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
39 lines (38 loc) • 1.21 kB
TypeScript
import { Type } from "igniteui-angular-core";
/**
* Describes available behaviors for the ValueOverlay.
*/
export declare enum ValueLayerValueMode {
/**
* The layer will automatically choose a mode to use.
*/
Auto = 0,
/**
* The layer will position itself at the minimum value found on the target series or across all series if no target is specified.
*/
Minimum = 1,
/**
* The layer will position itself at the maximum value found on the target series or across all series if no target is specified.
*/
Maximum = 2,
/**
* The layer will position itself at the average value found on the target series or at multiple values for multiple series if no target series is specified.
*/
Average = 3,
/**
* The layer will position itself at the global minimum value found.
*/
GlobalMinimum = 4,
/**
* The layer will position itself at the global maximum value found.
*/
GlobalMaximum = 5,
/**
* The layer will position itself at the global average value found.
*/
GlobalAverage = 6
}
/**
* @hidden
*/
export declare let ValueLayerValueMode_$type: Type;