igniteui-react-core
Version:
Ignite UI React Core.
230 lines (229 loc) • 7.15 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.e9 = false;
_this.e8 = false;
_this.fm = null;
_this.e5 = null;
_this.e7 = false;
_this.fj = null;
_this.fo = null;
_this.fg = 0;
_this.ff = 0;
_this.fp = null;
_this.fn = null;
_this.fr = null;
_this.fs = null;
_this.fd = 0;
_this.fl = null;
_this.fk = null;
_this.fq = null;
return _this;
}
ShapeSeriesBaseDescription.prototype.get_type = function () {
return "ShapeSeriesBase";
};
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "isCustomShapeStyleAllowed", {
get: function () {
return this.e9;
},
set: function (a) {
this.e9 = a;
this.g("IsCustomShapeStyleAllowed");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "isCustomShapeMarkerStyleAllowed", {
get: function () {
return this.e8;
},
set: function (a) {
this.e8 = a;
this.g("IsCustomShapeMarkerStyleAllowed");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "fillMemberPath", {
get: function () {
return this.fm;
},
set: function (a) {
this.fm = a;
this.g("FillMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "fillScale", {
get: function () {
return this.e5;
},
set: function (a) {
this.e5 = a;
this.g("FillScale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "fillScaleUseGlobalValues", {
get: function () {
return this.e7;
},
set: function (a) {
this.e7 = a;
this.g("FillScaleUseGlobalValues");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "actualItemSearchMode", {
get: function () {
return this.fj;
},
set: function (a) {
this.fj = a;
this.g("ActualItemSearchMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "itemSearchMode", {
get: function () {
return this.fo;
},
set: function (a) {
this.fo = a;
this.g("ItemSearchMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "itemSearchThreshold", {
get: function () {
return this.fg;
},
set: function (a) {
this.fg = a;
this.g("ItemSearchThreshold");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "itemSearchPointsThreshold", {
get: function () {
return this.ff;
},
set: function (a) {
this.ff = a;
this.g("ItemSearchPointsThreshold");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "shapeMemberPath", {
get: function () {
return this.fp;
},
set: function (a) {
this.fp = a;
this.g("ShapeMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "highlightedShapeMemberPath", {
get: function () {
return this.fn;
},
set: function (a) {
this.fn = a;
this.g("HighlightedShapeMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "xAxisRef", {
get: function () {
return this.fr;
},
set: function (a) {
this.fr = a;
this.g("XAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "yAxisRef", {
get: function () {
return this.fs;
},
set: function (a) {
this.fs = a;
this.g("YAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "shapeFilterResolution", {
get: function () {
return this.fd;
},
set: function (a) {
this.fd = a;
this.g("ShapeFilterResolution");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "assigningShapeStyleRef", {
get: function () {
return this.fl;
},
set: function (a) {
this.fl = a;
this.g("AssigningShapeStyleRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "assigningShapeMarkerStyleRef", {
get: function () {
return this.fk;
},
set: function (a) {
this.fk = a;
this.g("AssigningShapeMarkerStyleRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ShapeSeriesBaseDescription.prototype, "styleShapeRef", {
get: function () {
return this.fq;
},
set: function (a) {
this.fq = a;
this.g("StyleShapeRef");
},
enumerable: false,
configurable: true
});
ShapeSeriesBaseDescription.$t = markType(ShapeSeriesBaseDescription, 'ShapeSeriesBaseDescription', SeriesDescription.$);
return ShapeSeriesBaseDescription;
}(SeriesDescription));
export { ShapeSeriesBaseDescription };