UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

141 lines (140 loc) 4.53 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 { __extends } from "tslib"; import { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var LinearGraphRangeDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(LinearGraphRangeDescription, _super); function LinearGraphRangeDescription() { var _this = _super.call(this) || this; _this.y = null; _this.z = null; _this.p = 0; _this.k = 0; _this.m = 0; _this.l = 0; _this.o = 0; _this.n = 0; _this.q = 0; return _this; } LinearGraphRangeDescription.prototype.get_type = function () { return "LinearGraphRange"; }; Object.defineProperty(LinearGraphRangeDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(LinearGraphRangeDescription.prototype, "brush", { get: function () { return this.y; }, set: function (a) { this.y = a; this.j("Brush"); }, enumerable: false, configurable: true }); Object.defineProperty(LinearGraphRangeDescription.prototype, "outline", { get: function () { return this.z; }, set: function (a) { this.z = a; this.j("Outline"); }, enumerable: false, configurable: true }); Object.defineProperty(LinearGraphRangeDescription.prototype, "startValue", { get: function () { return this.p; }, set: function (a) { this.p = a; this.j("StartValue"); }, enumerable: false, configurable: true }); Object.defineProperty(LinearGraphRangeDescription.prototype, "endValue", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("EndValue"); }, enumerable: false, configurable: true }); Object.defineProperty(LinearGraphRangeDescription.prototype, "innerStartExtent", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("InnerStartExtent"); }, enumerable: false, configurable: true }); Object.defineProperty(LinearGraphRangeDescription.prototype, "innerEndExtent", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("InnerEndExtent"); }, enumerable: false, configurable: true }); Object.defineProperty(LinearGraphRangeDescription.prototype, "outerStartExtent", { get: function () { return this.o; }, set: function (a) { this.o = a; this.j("OuterStartExtent"); }, enumerable: false, configurable: true }); Object.defineProperty(LinearGraphRangeDescription.prototype, "outerEndExtent", { get: function () { return this.n; }, set: function (a) { this.n = a; this.j("OuterEndExtent"); }, enumerable: false, configurable: true }); Object.defineProperty(LinearGraphRangeDescription.prototype, "strokeThickness", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("StrokeThickness"); }, enumerable: false, configurable: true }); LinearGraphRangeDescription.$t = markType(LinearGraphRangeDescription, 'LinearGraphRangeDescription', Description.$); return LinearGraphRangeDescription; }(Description)); export { LinearGraphRangeDescription };