igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
230 lines (229 loc) • 7.5 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 { GeographicShapeSeriesBaseDescription } from "./GeographicShapeSeriesBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
var GeographicShapeSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GeographicShapeSeriesDescription, _super);
function GeographicShapeSeriesDescription() {
var _this = _super.call(this) || this;
_this.gk = null;
_this.gi = null;
_this.gj = null;
_this.f4 = 0;
_this.f3 = 0;
_this.gh = null;
_this.gf = null;
_this.gd = null;
_this.gg = null;
_this.gb = null;
_this.ge = null;
_this.f2 = 0;
_this.gc = null;
_this.ga = null;
_this.f8 = null;
_this.f9 = null;
_this.gl = null;
return _this;
}
GeographicShapeSeriesDescription.prototype.get_type = function () {
return "GeographicShapeSeries";
};
Object.defineProperty(GeographicShapeSeriesDescription.prototype, "shapeStyleSelectorRef", {
get: function () {
return this.gk;
},
set: function (a) {
this.gk = a;
this.j("ShapeStyleSelectorRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesDescription.prototype, "shapeFill", {
get: function () {
return this.gi;
},
set: function (a) {
this.gi = a;
this.j("ShapeFill");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesDescription.prototype, "shapeStroke", {
get: function () {
return this.gj;
},
set: function (a) {
this.gj = a;
this.j("ShapeStroke");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesDescription.prototype, "shapeStrokeThickness", {
get: function () {
return this.f4;
},
set: function (a) {
this.f4 = a;
this.j("ShapeStrokeThickness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesDescription.prototype, "shapeOpacity", {
get: function () {
return this.f3;
},
set: function (a) {
this.f3 = a;
this.j("ShapeOpacity");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesDescription.prototype, "markerType", {
get: function () {
return this.gh;
},
set: function (a) {
this.gh = a;
this.j("MarkerType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesDescription.prototype, "markerOutlineMode", {
get: function () {
return this.gf;
},
set: function (a) {
this.gf = a;
this.j("MarkerOutlineMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesDescription.prototype, "markerFillMode", {
get: function () {
return this.gd;
},
set: function (a) {
this.gd = a;
this.j("MarkerFillMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesDescription.prototype, "markerTemplateRef", {
get: function () {
return this.gg;
},
set: function (a) {
this.gg = a;
this.j("MarkerTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesDescription.prototype, "markerBrush", {
get: function () {
return this.gb;
},
set: function (a) {
this.gb = a;
this.j("MarkerBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesDescription.prototype, "markerOutline", {
get: function () {
return this.ge;
},
set: function (a) {
this.ge = a;
this.j("MarkerOutline");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesDescription.prototype, "markerThickness", {
get: function () {
return this.f2;
},
set: function (a) {
this.f2 = a;
this.j("MarkerThickness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesDescription.prototype, "markerCollisionAvoidance", {
get: function () {
return this.gc;
},
set: function (a) {
this.gc = a;
this.j("MarkerCollisionAvoidance");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesDescription.prototype, "actualMarkerTemplateRef", {
get: function () {
return this.ga;
},
set: function (a) {
this.ga = a;
this.j("ActualMarkerTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesDescription.prototype, "actualMarkerBrush", {
get: function () {
return this.f8;
},
set: function (a) {
this.f8 = a;
this.j("ActualMarkerBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesDescription.prototype, "actualMarkerOutline", {
get: function () {
return this.f9;
},
set: function (a) {
this.f9 = a;
this.j("ActualMarkerOutline");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicShapeSeriesDescription.prototype, "styleShapeRef", {
get: function () {
return this.gl;
},
set: function (a) {
this.gl = a;
this.j("StyleShapeRef");
},
enumerable: false,
configurable: true
});
GeographicShapeSeriesDescription.$t = markType(GeographicShapeSeriesDescription, 'GeographicShapeSeriesDescription', GeographicShapeSeriesBaseDescription.$);
return GeographicShapeSeriesDescription;
}(GeographicShapeSeriesBaseDescription));
export { GeographicShapeSeriesDescription };