igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
158 lines (157 loc) • 5.35 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.fo = null;
_this.fc = 0;
_this.fm = null;
_this.fk = null;
_this.fn = null;
_this.fj = null;
_this.fl = null;
_this.fe = 0;
_this.fi = null;
_this.fg = null;
_this.fh = null;
return _this;
}
GeographicMarkerSeriesDescription.prototype.get_type = function () {
return "GeographicMarkerSeries";
};
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "markerType", {
get: function () {
return this.fo;
},
set: function (a) {
this.fo = a;
this.j("MarkerType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "markerThickness", {
get: function () {
return this.fc;
},
set: function (a) {
this.fc = a;
this.j("MarkerThickness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "markerOutlineMode", {
get: function () {
return this.fm;
},
set: function (a) {
this.fm = a;
this.j("MarkerOutlineMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "markerFillMode", {
get: function () {
return this.fk;
},
set: function (a) {
this.fk = a;
this.j("MarkerFillMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "markerTemplateRef", {
get: function () {
return this.fn;
},
set: function (a) {
this.fn = a;
this.j("MarkerTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "markerBrush", {
get: function () {
return this.fj;
},
set: function (a) {
this.fj = a;
this.j("MarkerBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "markerOutline", {
get: function () {
return this.fl;
},
set: function (a) {
this.fl = a;
this.j("MarkerOutline");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "maximumMarkers", {
get: function () {
return this.fe;
},
set: function (a) {
this.fe = a;
this.j("MaximumMarkers");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "actualMarkerTemplateRef", {
get: function () {
return this.fi;
},
set: function (a) {
this.fi = a;
this.j("ActualMarkerTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "actualMarkerBrush", {
get: function () {
return this.fg;
},
set: function (a) {
this.fg = a;
this.j("ActualMarkerBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMarkerSeriesDescription.prototype, "actualMarkerOutline", {
get: function () {
return this.fh;
},
set: function (a) {
this.fh = a;
this.j("ActualMarkerOutline");
},
enumerable: false,
configurable: true
});
GeographicMarkerSeriesDescription.$t = markType(GeographicMarkerSeriesDescription, 'GeographicMarkerSeriesDescription', GeographicMapSeriesHostDescription.$);
return GeographicMarkerSeriesDescription;
}(GeographicMapSeriesHostDescription));
export { GeographicMarkerSeriesDescription };