igniteui-react-core
Version:
Ignite UI React Core.
58 lines (57 loc) • 2.55 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { markEnum } from "./type";
/**
* Indicates which axis type is suggested in a data series.
*/
export var DataSeriesAxisType = /*@__PURE__*/ (function (DataSeriesAxisType) {
/**
* Used when a category axis type is suggested.
*/
DataSeriesAxisType[DataSeriesAxisType["Category"] = 0] = "Category";
/**
* Used when a linear axis type is suggested.
*/
DataSeriesAxisType[DataSeriesAxisType["Linear"] = 1] = "Linear";
/**
* Used when a logarithmic axis type is suggested.
*/
DataSeriesAxisType[DataSeriesAxisType["Logarithmic"] = 2] = "Logarithmic";
/**
* Used when a continuous date time axis type is suggested.
*/
DataSeriesAxisType[DataSeriesAxisType["ContinuousDateTime"] = 3] = "ContinuousDateTime";
/**
* Used when a discrete date time axis type is suggested.
*/
DataSeriesAxisType[DataSeriesAxisType["DiscreteDateTime"] = 4] = "DiscreteDateTime";
/**
* Used when an angular category axis is suggested.
*/
DataSeriesAxisType[DataSeriesAxisType["CategoryAngle"] = 5] = "CategoryAngle";
/**
* Used when a proportional category angle axis is suggested.
*/
DataSeriesAxisType[DataSeriesAxisType["ProportionalCategoryAngle"] = 6] = "ProportionalCategoryAngle";
/**
* Used when a radial axis is suggested.
*/
DataSeriesAxisType[DataSeriesAxisType["RadialLinear"] = 7] = "RadialLinear";
/**
* Used when a logarithmic radial axis is suggested.
*/
DataSeriesAxisType[DataSeriesAxisType["RadialLogarithmic"] = 8] = "RadialLogarithmic";
/**
* Used when an axis is not applicable.
*/
DataSeriesAxisType[DataSeriesAxisType["NotApplicable"] = 9] = "NotApplicable";
return DataSeriesAxisType;
})({});
/**
* @hidden
*/
export let DataSeriesAxisType_$type = /*@__PURE__*/ markEnum('DataSeriesAxisType', 'Category,0|Linear,1|Logarithmic,2|ContinuousDateTime,3|DiscreteDateTime,4|CategoryAngle,5|ProportionalCategoryAngle,6|RadialLinear,7|RadialLogarithmic,8|NotApplicable,9');