igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
182 lines (181 loc) • 5.94 kB
JavaScript
/*
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.c5 = false;
_this.c4 = false;
_this.de = null;
_this.dh = null;
_this.db = 0;
_this.da = 0;
_this.di = null;
_this.dk = null;
_this.dl = null;
_this.c8 = 0;
_this.dg = null;
_this.df = null;
_this.dj = null;
return _this;
}
ShapeSeriesBaseDescription.prototype.get_type = function () {
return "ShapeSeriesBase";
};
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "isCustomShapeStyleAllowed", {
get: function () {
return this.c5;
},
set: function (a) {
this.c5 = a;
this.e("IsCustomShapeStyleAllowed");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "isCustomShapeMarkerStyleAllowed", {
get: function () {
return this.c4;
},
set: function (a) {
this.c4 = a;
this.e("IsCustomShapeMarkerStyleAllowed");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "actualItemSearchMode", {
get: function () {
return this.de;
},
set: function (a) {
this.de = a;
this.e("ActualItemSearchMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "itemSearchMode", {
get: function () {
return this.dh;
},
set: function (a) {
this.dh = a;
this.e("ItemSearchMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "itemSearchThreshold", {
get: function () {
return this.db;
},
set: function (a) {
this.db = a;
this.e("ItemSearchThreshold");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "itemSearchPointsThreshold", {
get: function () {
return this.da;
},
set: function (a) {
this.da = a;
this.e("ItemSearchPointsThreshold");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "shapeMemberPath", {
get: function () {
return this.di;
},
set: function (a) {
this.di = a;
this.e("ShapeMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "xAxisRef", {
get: function () {
return this.dk;
},
set: function (a) {
this.dk = a;
this.e("XAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "yAxisRef", {
get: function () {
return this.dl;
},
set: function (a) {
this.dl = a;
this.e("YAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "shapeFilterResolution", {
get: function () {
return this.c8;
},
set: function (a) {
this.c8 = a;
this.e("ShapeFilterResolution");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "assigningShapeStyleRef", {
get: function () {
return this.dg;
},
set: function (a) {
this.dg = a;
this.e("AssigningShapeStyleRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "assigningShapeMarkerStyleRef", {
get: function () {
return this.df;
},
set: function (a) {
this.df = a;
this.e("AssigningShapeMarkerStyleRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "styleShapeRef", {
get: function () {
return this.dj;
},
set: function (a) {
this.dj = a;
this.e("StyleShapeRef");
},
enumerable: false,
configurable: true
});
ShapeSeriesBaseDescription.$t = markType(ShapeSeriesBaseDescription, 'ShapeSeriesBaseDescription', SeriesDescription.$);
return ShapeSeriesBaseDescription;
}(SeriesDescription));
export { ShapeSeriesBaseDescription };