UNPKG

igniteui-react-core

Version:
26 lines (25 loc) 1.14 kB
/* 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"; /** * Describes available behaviors for choosing the direction of error bars calculation in scatter series. */ export var ErrorBarCalculatorReference = /*@__PURE__*/ (function (ErrorBarCalculatorReference) { /** * Variable X. */ ErrorBarCalculatorReference[ErrorBarCalculatorReference["X"] = 0] = "X"; /** * Variable Y. */ ErrorBarCalculatorReference[ErrorBarCalculatorReference["Y"] = 1] = "Y"; return ErrorBarCalculatorReference; })({}); /** * @hidden */ export let ErrorBarCalculatorReference_$type = /*@__PURE__*/ markEnum('ErrorBarCalculatorReference', 'X,0|Y,1');