UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

122 lines (121 loc) 4.24 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 { MarkerSeriesDescription } from "./MarkerSeriesDescription"; import { markType } from "./type"; /** * @hidden */ var CategorySeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(CategorySeriesDescription, _super); function CategorySeriesDescription() { var _this = _super.call(this) || this; _this.fz = false; _this.fy = false; _this.f8 = null; _this.f1 = false; _this.f9 = null; _this.f0 = false; _this.f7 = null; _this.f6 = null; return _this; } CategorySeriesDescription.prototype.get_type = function () { return "CategorySeries"; }; Object.defineProperty(CategorySeriesDescription.prototype, "isCustomCategoryStyleAllowed", { get: function () { return this.fz; }, set: function (a) { this.fz = a; this.j("IsCustomCategoryStyleAllowed"); }, enumerable: false, configurable: true }); Object.defineProperty(CategorySeriesDescription.prototype, "isCustomCategoryMarkerStyleAllowed", { get: function () { return this.fy; }, set: function (a) { this.fy = a; this.j("IsCustomCategoryMarkerStyleAllowed"); }, enumerable: false, configurable: true }); Object.defineProperty(CategorySeriesDescription.prototype, "categoryCollisionMode", { get: function () { return this.f8; }, set: function (a) { this.f8 = a; this.j("CategoryCollisionMode"); }, enumerable: false, configurable: true }); Object.defineProperty(CategorySeriesDescription.prototype, "useHighMarkerFidelity", { get: function () { return this.f1; }, set: function (a) { this.f1 = a; this.j("UseHighMarkerFidelity"); }, enumerable: false, configurable: true }); Object.defineProperty(CategorySeriesDescription.prototype, "transitionInMode", { get: function () { return this.f9; }, set: function (a) { this.f9 = a; this.j("TransitionInMode"); }, enumerable: false, configurable: true }); Object.defineProperty(CategorySeriesDescription.prototype, "isTransitionInEnabled", { get: function () { return this.f0; }, set: function (a) { this.f0 = a; this.j("IsTransitionInEnabled"); }, enumerable: false, configurable: true }); Object.defineProperty(CategorySeriesDescription.prototype, "assigningCategoryStyleRef", { get: function () { return this.f7; }, set: function (a) { this.f7 = a; this.j("AssigningCategoryStyleRef"); }, enumerable: false, configurable: true }); Object.defineProperty(CategorySeriesDescription.prototype, "assigningCategoryMarkerStyleRef", { get: function () { return this.f6; }, set: function (a) { this.f6 = a; this.j("AssigningCategoryMarkerStyleRef"); }, enumerable: false, configurable: true }); CategorySeriesDescription.$t = markType(CategorySeriesDescription, 'CategorySeriesDescription', MarkerSeriesDescription.$); return CategorySeriesDescription; }(MarkerSeriesDescription)); export { CategorySeriesDescription };