UNPKG

igniteui-react-charts

Version:

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

23 lines (22 loc) 575 B
import { Type } from "igniteui-react-core"; /** * Describes available locations of the axis labels in the chart. */ export declare enum SeriesVisibleRangeMode { /** * Visible range mode is managed by the component. */ Auto = 0, /** * Only the series values are considered for evaluating the visible range. */ ValuesOnly = 1, /** * The reference value is included in the series visible range. */ IncludeReferenceValue = 2 } /** * @hidden */ export declare let SeriesVisibleRangeMode_$type: Type;