igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
27 lines (26 loc) • 636 B
TypeScript
import { Type } from "igniteui-angular-core";
/**
* Gets or sets how to select the final value to annotate.
*/
export declare enum FinalValueSelectionMode {
/**
* A mode is selected automatically
*/
Auto = 0,
/**
* Displays the last value visible.
*/
FinalVisible = 1,
/**
* Displays an interpolated last value for when the series leaves view.
*/
FinalVisibleInterpolated = 2,
/**
* Displays the last value in the series, whether visible or not.
*/
Final = 3
}
/**
* @hidden
*/
export declare let FinalValueSelectionMode_$type: Type;