UNPKG

igniteui-react-core

Version:
248 lines (247 loc) 7.18 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 { AxisDescription } from "./AxisDescription"; import { markType } from "./type"; /** * @hidden */ export let NumericAxisBaseDescription = /*@__PURE__*/ (() => { class NumericAxisBaseDescription extends AxisDescription { get_type() { return "NumericAxisBase"; } constructor() { super(); this.e6 = null; this.eh = 0; this.eb = 0; this.ee = 0; this.eg = 0; this.ea = 0; this.ed = 0; this.ef = 0; this.d9 = 0; this.ev = 0; this.ex = 0; this.d2 = false; this.ei = 0; this.ec = 0; this.ej = 0; this.d1 = false; this.dy = false; this.dz = false; this.ew = 0; this.e7 = null; this.e1 = null; this.dv = null; this.d0 = false; this.dx = false; this.e4 = null; this.e3 = null; this.e2 = null; this.e5 = null; } get autoRangeBufferMode() { return this.e6; } set autoRangeBufferMode(a) { this.e6 = a; this.g("AutoRangeBufferMode"); } get minimumValue() { return this.eh; } set minimumValue(a) { this.eh = a; this.g("MinimumValue"); } get actualMinimumValue() { return this.eb; } set actualMinimumValue(a) { this.eb = a; this.g("ActualMinimumValue"); } get actualVisibleMinimumValue() { return this.ee; } set actualVisibleMinimumValue(a) { this.ee = a; this.g("ActualVisibleMinimumValue"); } get maximumValue() { return this.eg; } set maximumValue(a) { this.eg = a; this.g("MaximumValue"); } get actualMaximumValue() { return this.ea; } set actualMaximumValue(a) { this.ea = a; this.g("ActualMaximumValue"); } get actualVisibleMaximumValue() { return this.ed; } set actualVisibleMaximumValue(a) { this.ed = a; this.g("ActualVisibleMaximumValue"); } get interval() { return this.ef; } set interval(a) { this.ef = a; this.g("Interval"); } get actualInterval() { return this.d9; } set actualInterval(a) { this.d9 = a; this.g("ActualInterval"); } get actualMaxPrecision() { return this.ev; } set actualMaxPrecision(a) { this.ev = a; this.g("ActualMaxPrecision"); } get maxPrecision() { return this.ex; } set maxPrecision(a) { this.ex = a; this.g("MaxPrecision"); } get shouldApplyMaxPrecisionWhenZoomed() { return this.d2; } set shouldApplyMaxPrecisionWhenZoomed(a) { this.d2 = a; this.g("ShouldApplyMaxPrecisionWhenZoomed"); } get minorInterval() { return this.ei; } set minorInterval(a) { this.ei = a; this.g("MinorInterval"); } get actualMinorInterval() { return this.ec; } set actualMinorInterval(a) { this.ec = a; this.g("ActualMinorInterval"); } get referenceValue() { return this.ej; } set referenceValue(a) { this.ej = a; this.g("ReferenceValue"); } get isLogarithmic() { return this.d1; } set isLogarithmic(a) { this.d1 = a; this.g("IsLogarithmic"); } get actualIsLogarithmic() { return this.dy; } set actualIsLogarithmic(a) { this.dy = a; this.g("ActualIsLogarithmic"); } get favorLabellingScaleEnd() { return this.dz; } set favorLabellingScaleEnd(a) { this.dz = a; this.g("FavorLabellingScaleEnd"); } get logarithmBase() { return this.ew; } set logarithmBase(a) { this.ew = a; this.g("LogarithmBase"); } get formatAbbreviatedLabelRef() { return this.e7; } set formatAbbreviatedLabelRef(a) { this.e7 = a; this.g("FormatAbbreviatedLabelRef"); } get abbreviatedLabelFormat() { return this.e1; } set abbreviatedLabelFormat(a) { this.e1 = a; this.g("AbbreviatedLabelFormat"); } get abbreviatedLabelFormatSpecifiers() { return this.dv; } set abbreviatedLabelFormatSpecifiers(a) { this.dv = a; this.g("AbbreviatedLabelFormatSpecifiers"); } get isFormattingAbbreviatedLargeNumber() { return this.d0; } set isFormattingAbbreviatedLargeNumber(a) { this.d0 = a; this.g("IsFormattingAbbreviatedLargeNumber"); } get abbreviateLargeNumbers() { return this.dx; } set abbreviateLargeNumbers(a) { this.dx = a; this.g("AbbreviateLargeNumbers"); } get actualMinimumValueChangeRef() { return this.e4; } set actualMinimumValueChangeRef(a) { this.e4 = a; this.g("ActualMinimumValueChangeRef"); } get actualMaximumValueChangeRef() { return this.e3; } set actualMaximumValueChangeRef(a) { this.e3 = a; this.g("ActualMaximumValueChangeRef"); } get actualIntervalChangeRef() { return this.e2; } set actualIntervalChangeRef(a) { this.e2 = a; this.g("ActualIntervalChangeRef"); } get actualMinorIntervalChangeRef() { return this.e5; } set actualMinorIntervalChangeRef(a) { this.e5 = a; this.g("ActualMinorIntervalChangeRef"); } } NumericAxisBaseDescription.$t = /*@__PURE__*/ markType(NumericAxisBaseDescription, 'NumericAxisBaseDescription', AxisDescription.$); return NumericAxisBaseDescription; })();