UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

158 lines (157 loc) 5.26 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 { CategoryAxisBaseDescription } from "./CategoryAxisBaseDescription"; import { markType } from "./type"; /** * @hidden */ var CategoryAngleAxisDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(CategoryAngleAxisDescription, _super); function CategoryAngleAxisDescription() { var _this = _super.call(this) || this; _this.f4 = 0; _this.f5 = 0; _this.f6 = 0; _this.gj = null; _this.f9 = 0; _this.gk = null; _this.f7 = 0; _this.f2 = 0; _this.f8 = 0; _this.f3 = 0; _this.gi = null; return _this; } CategoryAngleAxisDescription.prototype.get_type = function () { return "CategoryAngleAxis"; }; Object.defineProperty(CategoryAngleAxisDescription.prototype, "companionAxisInterval", { get: function () { return this.f4; }, set: function (a) { this.f4 = a; this.j("CompanionAxisInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryAngleAxisDescription.prototype, "companionAxisMinorInterval", { get: function () { return this.f5; }, set: function (a) { this.f5 = a; this.j("CompanionAxisMinorInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryAngleAxisDescription.prototype, "companionAxisStartAngleOffset", { get: function () { return this.f6; }, set: function (a) { this.f6 = a; this.j("CompanionAxisStartAngleOffset"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryAngleAxisDescription.prototype, "companionAxisLabelMode", { get: function () { return this.gj; }, set: function (a) { this.gj = a; this.j("CompanionAxisLabelMode"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryAngleAxisDescription.prototype, "startAngleOffset", { get: function () { return this.f9; }, set: function (a) { this.f9 = a; this.j("StartAngleOffset"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryAngleAxisDescription.prototype, "labelMode", { get: function () { return this.gk; }, set: function (a) { this.gk = a; this.j("LabelMode"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryAngleAxisDescription.prototype, "interval", { get: function () { return this.f7; }, set: function (a) { this.f7 = a; this.j("Interval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryAngleAxisDescription.prototype, "actualInterval", { get: function () { return this.f2; }, set: function (a) { this.f2 = a; this.j("ActualInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryAngleAxisDescription.prototype, "minorInterval", { get: function () { return this.f8; }, set: function (a) { this.f8 = a; this.j("MinorInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryAngleAxisDescription.prototype, "actualMinorInterval", { get: function () { return this.f3; }, set: function (a) { this.f3 = a; this.j("ActualMinorInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryAngleAxisDescription.prototype, "actualIntervalChangeRef", { get: function () { return this.gi; }, set: function (a) { this.gi = a; this.j("ActualIntervalChangeRef"); }, enumerable: false, configurable: true }); CategoryAngleAxisDescription.$t = markType(CategoryAngleAxisDescription, 'CategoryAngleAxisDescription', CategoryAxisBaseDescription.$); return CategoryAngleAxisDescription; }(CategoryAxisBaseDescription)); export { CategoryAngleAxisDescription };