UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

230 lines (229 loc) 7.38 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 { SeriesDescription } from "./SeriesDescription"; import { markType } from "./type"; /** * @hidden */ var ShapeSeriesBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ShapeSeriesBaseDescription, _super); function ShapeSeriesBaseDescription() { var _this = _super.call(this) || this; _this.fe = false; _this.fd = false; _this.fr = null; _this.fa = null; _this.fc = false; _this.fo = null; _this.ft = null; _this.fl = 0; _this.fk = 0; _this.fu = null; _this.fs = null; _this.fw = null; _this.fx = null; _this.fi = 0; _this.fq = null; _this.fp = null; _this.fv = null; return _this; } ShapeSeriesBaseDescription.prototype.get_type = function () { return "ShapeSeriesBase"; }; Object.defineProperty(ShapeSeriesBaseDescription.prototype, "isCustomShapeStyleAllowed", { get: function () { return this.fe; }, set: function (a) { this.fe = a; this.j("IsCustomShapeStyleAllowed"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeSeriesBaseDescription.prototype, "isCustomShapeMarkerStyleAllowed", { get: function () { return this.fd; }, set: function (a) { this.fd = a; this.j("IsCustomShapeMarkerStyleAllowed"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeSeriesBaseDescription.prototype, "fillMemberPath", { get: function () { return this.fr; }, set: function (a) { this.fr = a; this.j("FillMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeSeriesBaseDescription.prototype, "fillScale", { get: function () { return this.fa; }, set: function (a) { this.fa = a; this.j("FillScale"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeSeriesBaseDescription.prototype, "fillScaleUseGlobalValues", { get: function () { return this.fc; }, set: function (a) { this.fc = a; this.j("FillScaleUseGlobalValues"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeSeriesBaseDescription.prototype, "actualItemSearchMode", { get: function () { return this.fo; }, set: function (a) { this.fo = a; this.j("ActualItemSearchMode"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeSeriesBaseDescription.prototype, "itemSearchMode", { get: function () { return this.ft; }, set: function (a) { this.ft = a; this.j("ItemSearchMode"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeSeriesBaseDescription.prototype, "itemSearchThreshold", { get: function () { return this.fl; }, set: function (a) { this.fl = a; this.j("ItemSearchThreshold"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeSeriesBaseDescription.prototype, "itemSearchPointsThreshold", { get: function () { return this.fk; }, set: function (a) { this.fk = a; this.j("ItemSearchPointsThreshold"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeSeriesBaseDescription.prototype, "shapeMemberPath", { get: function () { return this.fu; }, set: function (a) { this.fu = a; this.j("ShapeMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeSeriesBaseDescription.prototype, "highlightedShapeMemberPath", { get: function () { return this.fs; }, set: function (a) { this.fs = a; this.j("HighlightedShapeMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeSeriesBaseDescription.prototype, "xAxisRef", { get: function () { return this.fw; }, set: function (a) { this.fw = a; this.j("XAxisRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeSeriesBaseDescription.prototype, "yAxisRef", { get: function () { return this.fx; }, set: function (a) { this.fx = a; this.j("YAxisRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeSeriesBaseDescription.prototype, "shapeFilterResolution", { get: function () { return this.fi; }, set: function (a) { this.fi = a; this.j("ShapeFilterResolution"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeSeriesBaseDescription.prototype, "assigningShapeStyleRef", { get: function () { return this.fq; }, set: function (a) { this.fq = a; this.j("AssigningShapeStyleRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeSeriesBaseDescription.prototype, "assigningShapeMarkerStyleRef", { get: function () { return this.fp; }, set: function (a) { this.fp = a; this.j("AssigningShapeMarkerStyleRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeSeriesBaseDescription.prototype, "styleShapeRef", { get: function () { return this.fv; }, set: function (a) { this.fv = a; this.j("StyleShapeRef"); }, enumerable: false, configurable: true }); ShapeSeriesBaseDescription.$t = markType(ShapeSeriesBaseDescription, 'ShapeSeriesBaseDescription', SeriesDescription.$); return ShapeSeriesBaseDescription; }(SeriesDescription)); export { ShapeSeriesBaseDescription };