UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

83 lines (82 loc) 2.48 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let SizeScaleDescription = /*@__PURE__*/ (() => { class SizeScaleDescription extends Description { constructor() { super(); this.n = 0; this.m = 0; this.p = 0; this.o = 0; this.k = false; this.u = 0; this.w = null; } get_type() { return "SizeScale"; } get type() { return this.get_type(); } get globalMinimum() { return this.n; } set globalMinimum(a) { this.n = a; this.j("GlobalMinimum"); } get globalMaximum() { return this.m; } set globalMaximum(a) { this.m = a; this.j("GlobalMaximum"); } get minimumValue() { return this.p; } set minimumValue(a) { this.p = a; this.j("MinimumValue"); } get maximumValue() { return this.o; } set maximumValue(a) { this.o = a; this.j("MaximumValue"); } get isLogarithmic() { return this.k; } set isLogarithmic(a) { this.k = a; this.j("IsLogarithmic"); } get logarithmBase() { return this.u; } set logarithmBase(a) { this.u = a; this.j("LogarithmBase"); } get propertyUpdatedRef() { return this.w; } set propertyUpdatedRef(a) { this.w = a; this.j("PropertyUpdatedRef"); } } SizeScaleDescription.$t = markType(SizeScaleDescription, 'SizeScaleDescription', Description.$); return SizeScaleDescription; })();