igniteui-react-core
Version:
Ignite UI React Core.
158 lines (157 loc) • 5.19 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 GeographicMarkerSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GeographicMarkerSeriesDescription, _super);
function GeographicMarkerSeriesDescription() {
var _this = _super.call(this) || this;
_this.fl = null;
_this.e9 = 0;
_this.fj = null;
_this.fh = null;
_this.fk = null;
_this.fg = null;
_this.fi = null;
_this.fb = 0;
_this.ff = null;
_this.fd = null;
_this.fe = null;
return _this;
}
GeographicMarkerSeriesDescription.prototype.get_type = function () {
return "GeographicMarkerSeries";
};
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "markerType", {
get: function () {
return this.fl;
},
set: function (a) {
this.fl = a;
this.g("MarkerType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "markerThickness", {
get: function () {
return this.e9;
},
set: function (a) {
this.e9 = a;
this.g("MarkerThickness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "markerOutlineMode", {
get: function () {
return this.fj;
},
set: function (a) {
this.fj = a;
this.g("MarkerOutlineMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "markerFillMode", {
get: function () {
return this.fh;
},
set: function (a) {
this.fh = a;
this.g("MarkerFillMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "markerTemplateRef", {
get: function () {
return this.fk;
},
set: function (a) {
this.fk = a;
this.g("MarkerTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "markerBrush", {
get: function () {
return this.fg;
},
set: function (a) {
this.fg = a;
this.g("MarkerBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "markerOutline", {
get: function () {
return this.fi;
},
set: function (a) {
this.fi = a;
this.g("MarkerOutline");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "maximumMarkers", {
get: function () {
return this.fb;
},
set: function (a) {
this.fb = a;
this.g("MaximumMarkers");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "actualMarkerTemplateRef", {
get: function () {
return this.ff;
},
set: function (a) {
this.ff = a;
this.g("ActualMarkerTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "actualMarkerBrush", {
get: function () {
return this.fd;
},
set: function (a) {
this.fd = a;
this.g("ActualMarkerBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "actualMarkerOutline", {
get: function () {
return this.fe;
},
set: function (a) {
this.fe = a;
this.g("ActualMarkerOutline");
},
enumerable: false,
configurable: true
});
GeographicMarkerSeriesDescription.$t = markType(GeographicMarkerSeriesDescription, 'GeographicMarkerSeriesDescription', GeographicMapSeriesHostDescription.$);
return GeographicMarkerSeriesDescription;
}(GeographicMapSeriesHostDescription));
export { GeographicMarkerSeriesDescription };