UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

51 lines (50 loc) 1.21 kB
import { Type } from "./type"; /** * Indicates which axis type is suggested in a data series. */ export declare enum DataSeriesAxisType { /** * Used when a category axis type is suggested. */ Category = 0, /** * Used when a linear axis type is suggested. */ Linear = 1, /** * Used when a logarithmic axis type is suggested. */ Logarithmic = 2, /** * Used when a continuous date time axis type is suggested. */ ContinuousDateTime = 3, /** * Used when a discrete date time axis type is suggested. */ DiscreteDateTime = 4, /** * Used when an angular category axis is suggested. */ CategoryAngle = 5, /** * Used when a proportional category angle axis is suggested. */ ProportionalCategoryAngle = 6, /** * Used when a radial axis is suggested. */ RadialLinear = 7, /** * Used when a logarithmic radial axis is suggested. */ RadialLogarithmic = 8, /** * Used when an axis is not applicable. */ NotApplicable = 9 } /** * @hidden */ export declare let DataSeriesAxisType_$type: Type;