igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
134 lines (133 loc) • 4.77 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 { GeographicMarkerSeriesDescription } from "./GeographicMarkerSeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
var GeographicSymbolSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GeographicSymbolSeriesDescription, _super);
function GeographicSymbolSeriesDescription() {
var _this = _super.call(this) || this;
_this.d4 = null;
_this.d5 = null;
_this.d6 = null;
_this.dw = false;
_this.dv = false;
_this.d3 = null;
_this.dz = 0;
_this.d2 = null;
_this.d1 = null;
return _this;
}
GeographicSymbolSeriesDescription.prototype.get_type = function () {
return "GeographicSymbolSeries";
};
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "latitudeMemberPath", {
get: function () {
return this.d4;
},
set: function (a) {
this.d4 = a;
this.e("LatitudeMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "longitudeMemberPath", {
get: function () {
return this.d5;
},
set: function (a) {
this.d5 = a;
this.e("LongitudeMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "markerCollisionAvoidance", {
get: function () {
return this.d6;
},
set: function (a) {
this.d6 = a;
this.e("MarkerCollisionAvoidance");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "isCustomScatterStyleAllowed", {
get: function () {
return this.dw;
},
set: function (a) {
this.dw = a;
this.e("IsCustomScatterStyleAllowed");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "isCustomScatterMarkerStyleAllowed", {
get: function () {
return this.dv;
},
set: function (a) {
this.dv = a;
this.e("IsCustomScatterMarkerStyleAllowed");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "itemSearchMode", {
get: function () {
return this.d3;
},
set: function (a) {
this.d3 = a;
this.e("ItemSearchMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "itemSearchThreshold", {
get: function () {
return this.dz;
},
set: function (a) {
this.dz = a;
this.e("ItemSearchThreshold");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "assigningScatterStyleRef", {
get: function () {
return this.d2;
},
set: function (a) {
this.d2 = a;
this.e("AssigningScatterStyleRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "assigningScatterMarkerStyleRef", {
get: function () {
return this.d1;
},
set: function (a) {
this.d1 = a;
this.e("AssigningScatterMarkerStyleRef");
},
enumerable: false,
configurable: true
});
GeographicSymbolSeriesDescription.$t = markType(GeographicSymbolSeriesDescription, 'GeographicSymbolSeriesDescription', GeographicMarkerSeriesDescription.$);
return GeographicSymbolSeriesDescription;
}(GeographicMarkerSeriesDescription));
export { GeographicSymbolSeriesDescription };