igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
98 lines (97 loc) • 3.57 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 GeographicPolylineSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GeographicPolylineSeriesDescription, _super);
function GeographicPolylineSeriesDescription() {
var _this = _super.call(this) || this;
_this.f8 = null;
_this.f6 = null;
_this.f7 = null;
_this.f3 = 0;
_this.f2 = 0;
_this.f9 = null;
return _this;
}
GeographicPolylineSeriesDescription.prototype.get_type = function () {
return "GeographicPolylineSeries";
};
Object.defineProperty(GeographicPolylineSeriesDescription.prototype, "shapeStyleSelectorRef", {
get: function () {
return this.f8;
},
set: function (a) {
this.f8 = a;
this.j("ShapeStyleSelectorRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicPolylineSeriesDescription.prototype, "shapeFill", {
get: function () {
return this.f6;
},
set: function (a) {
this.f6 = a;
this.j("ShapeFill");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicPolylineSeriesDescription.prototype, "shapeStroke", {
get: function () {
return this.f7;
},
set: function (a) {
this.f7 = a;
this.j("ShapeStroke");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicPolylineSeriesDescription.prototype, "shapeStrokeThickness", {
get: function () {
return this.f3;
},
set: function (a) {
this.f3 = a;
this.j("ShapeStrokeThickness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicPolylineSeriesDescription.prototype, "shapeOpacity", {
get: function () {
return this.f2;
},
set: function (a) {
this.f2 = a;
this.j("ShapeOpacity");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicPolylineSeriesDescription.prototype, "styleShapeRef", {
get: function () {
return this.f9;
},
set: function (a) {
this.f9 = a;
this.j("StyleShapeRef");
},
enumerable: false,
configurable: true
});
GeographicPolylineSeriesDescription.$t = markType(GeographicPolylineSeriesDescription, 'GeographicPolylineSeriesDescription', GeographicShapeSeriesBaseDescription.$);
return GeographicPolylineSeriesDescription;
}(GeographicShapeSeriesBaseDescription));
export { GeographicPolylineSeriesDescription };