UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

21 lines (20 loc) 539 B
import { Type } from "igniteui-angular-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;