UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

27 lines (26 loc) 634 B
import { Type } from "igniteui-react-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;