igniteui-react-core
Version:
Ignite UI React Core.
182 lines (181 loc) • 6.09 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 { GeographicMapSeriesHostDescription } from "./GeographicMapSeriesHostDescription";
import { markType } from "./type";
/**
* @hidden
*/
var GeographicShapeSeriesBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GeographicShapeSeriesBaseDescription, _super);
function GeographicShapeSeriesBaseDescription() {
var _this = _super.call(this) || this;
_this.ft = null;
_this.ff = false;
_this.fe = false;
_this.fs = null;
_this.fm = 0;
_this.fr = null;
_this.e9 = null;
_this.fd = false;
_this.fl = 0;
_this.fb = null;
_this.fj = 0;
_this.fq = null;
_this.fp = null;
return _this;
}
GeographicShapeSeriesBaseDescription.prototype.get_type = function () {
return "GeographicShapeSeriesBase";
};
Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "shapeMemberPath", {
get: function () {
return this.ft;
},
set: function (a) {
this.ft = a;
this.g("ShapeMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "isCustomShapeStyleAllowed", {
get: function () {
return this.ff;
},
set: function (a) {
this.ff = a;
this.g("IsCustomShapeStyleAllowed");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "isCustomShapeMarkerStyleAllowed", {
get: function () {
return this.fe;
},
set: function (a) {
this.fe = a;
this.g("IsCustomShapeMarkerStyleAllowed");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "itemSearchMode", {
get: function () {
return this.fs;
},
set: function (a) {
this.fs = a;
this.g("ItemSearchMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "itemSearchThreshold", {
get: function () {
return this.fm;
},
set: function (a) {
this.fm = a;
this.g("ItemSearchThreshold");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "fillMemberPath", {
get: function () {
return this.fr;
},
set: function (a) {
this.fr = a;
this.g("FillMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "fillScale", {
get: function () {
return this.e9;
},
set: function (a) {
this.e9 = a;
this.g("FillScale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "fillScaleUseGlobalValues", {
get: function () {
return this.fd;
},
set: function (a) {
this.fd = a;
this.g("FillScaleUseGlobalValues");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "itemSearchPointsThreshold", {
get: function () {
return this.fl;
},
set: function (a) {
this.fl = a;
this.g("ItemSearchPointsThreshold");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "shapefileDataSource", {
get: function () {
return this.fb;
},
set: function (a) {
this.fb = a;
this.g("ShapefileDataSource");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "shapeFilterResolution", {
get: function () {
return this.fj;
},
set: function (a) {
this.fj = a;
this.g("ShapeFilterResolution");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "assigningShapeStyleRef", {
get: function () {
return this.fq;
},
set: function (a) {
this.fq = a;
this.g("AssigningShapeStyleRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesBaseDescription.prototype, "assigningShapeMarkerStyleRef", {
get: function () {
return this.fp;
},
set: function (a) {
this.fp = a;
this.g("AssigningShapeMarkerStyleRef");
},
enumerable: false,
configurable: true
});
GeographicShapeSeriesBaseDescription.$t = markType(GeographicShapeSeriesBaseDescription, 'GeographicShapeSeriesBaseDescription', GeographicMapSeriesHostDescription.$);
return GeographicShapeSeriesBaseDescription;
}(GeographicMapSeriesHostDescription));
export { GeographicShapeSeriesBaseDescription };