UNPKG

igniteui-react-charts

Version:

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

21 lines (20 loc) 537 B
import { Type } from "igniteui-react-core"; /** * An enum representing the available X axis types in the Financial Chart. */ export declare enum FinancialChartXAxisMode { /** * An ordinal scale with time labels. * Items on an ordinal scale are consecutive and equidistant. */ Ordinal = 0, /** * A time scale. * Items on a time scale are positioned according to their time values. */ Time = 1 } /** * @hidden */ export declare let FinancialChartXAxisMode_$type: Type;