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.f7 = null;
_this.f8 = null;
_this.f9 = null;
_this.fz = false;
_this.fy = false;
_this.f6 = null;
_this.f2 = 0;
_this.f5 = null;
_this.f4 = null;
return _this;
}
GeographicSymbolSeriesDescription.prototype.get_type = function () {
return "GeographicSymbolSeries";
};
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "latitudeMemberPath", {
get: function () {
return this.f7;
},
set: function (a) {
this.f7 = a;
this.j("LatitudeMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "longitudeMemberPath", {
get: function () {
return this.f8;
},
set: function (a) {
this.f8 = a;
this.j("LongitudeMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "markerCollisionAvoidance", {
get: function () {
return this.f9;
},
set: function (a) {
this.f9 = a;
this.j("MarkerCollisionAvoidance");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "isCustomScatterStyleAllowed", {
get: function () {
return this.fz;
},
set: function (a) {
this.fz = a;
this.j("IsCustomScatterStyleAllowed");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "isCustomScatterMarkerStyleAllowed", {
get: function () {
return this.fy;
},
set: function (a) {
this.fy = a;
this.j("IsCustomScatterMarkerStyleAllowed");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "itemSearchMode", {
get: function () {
return this.f6;
},
set: function (a) {
this.f6 = a;
this.j("ItemSearchMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "itemSearchThreshold", {
get: function () {
return this.f2;
},
set: function (a) {
this.f2 = a;
this.j("ItemSearchThreshold");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "assigningScatterStyleRef", {
get: function () {
return this.f5;
},
set: function (a) {
this.f5 = a;
this.j("AssigningScatterStyleRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicSymbolSeriesDescription.prototype, "assigningScatterMarkerStyleRef", {
get: function () {
return this.f4;
},
set: function (a) {
this.f4 = a;
this.j("AssigningScatterMarkerStyleRef");
},
enumerable: false,
configurable: true
});
GeographicSymbolSeriesDescription.$t = markType(GeographicSymbolSeriesDescription, 'GeographicSymbolSeriesDescription', GeographicMarkerSeriesDescription.$);
return GeographicSymbolSeriesDescription;
}(GeographicMarkerSeriesDescription));
export { GeographicSymbolSeriesDescription };