UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

50 lines (49 loc) 2.02 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 { NumericAxisBaseDescription } from "./NumericAxisBaseDescription"; import { markType } from "./type"; /** * @hidden */ var NumericRadiusAxisDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(NumericRadiusAxisDescription, _super); function NumericRadiusAxisDescription() { var _this = _super.call(this) || this; _this.hj = 0; _this.hi = 0; return _this; } NumericRadiusAxisDescription.prototype.get_type = function () { return "NumericRadiusAxis"; }; Object.defineProperty(NumericRadiusAxisDescription.prototype, "radiusExtentScale", { get: function () { return this.hj; }, set: function (a) { this.hj = a; this.j("RadiusExtentScale"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericRadiusAxisDescription.prototype, "innerRadiusExtentScale", { get: function () { return this.hi; }, set: function (a) { this.hi = a; this.j("InnerRadiusExtentScale"); }, enumerable: false, configurable: true }); NumericRadiusAxisDescription.$t = markType(NumericRadiusAxisDescription, 'NumericRadiusAxisDescription', NumericAxisBaseDescription.$); return NumericRadiusAxisDescription; }(NumericAxisBaseDescription)); export { NumericRadiusAxisDescription };