igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
146 lines (145 loc) • 4.73 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 { SeriesDescription } from "./SeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
var MarkerSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(MarkerSeriesDescription, _super);
function MarkerSeriesDescription() {
var _this = _super.call(this) || this;
_this.de = null;
_this.dc = null;
_this.da = null;
_this.dd = null;
_this.c4 = 0;
_this.c8 = null;
_this.c9 = null;
_this.c6 = null;
_this.db = null;
_this.c7 = null;
return _this;
}
MarkerSeriesDescription.prototype.get_type = function () {
return "MarkerSeries";
};
Object.defineProperty(MarkerSeriesDescription.prototype, "markerType", {
get: function () {
return this.de;
},
set: function (a) {
this.de = a;
this.e("MarkerType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(MarkerSeriesDescription.prototype, "markerOutlineMode", {
get: function () {
return this.dc;
},
set: function (a) {
this.dc = a;
this.e("MarkerOutlineMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(MarkerSeriesDescription.prototype, "markerFillMode", {
get: function () {
return this.da;
},
set: function (a) {
this.da = a;
this.e("MarkerFillMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(MarkerSeriesDescription.prototype, "markerTemplateRef", {
get: function () {
return this.dd;
},
set: function (a) {
this.dd = a;
this.e("MarkerTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(MarkerSeriesDescription.prototype, "markerThickness", {
get: function () {
return this.c4;
},
set: function (a) {
this.c4 = a;
this.e("MarkerThickness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(MarkerSeriesDescription.prototype, "actualMarkerTemplateRef", {
get: function () {
return this.c8;
},
set: function (a) {
this.c8 = a;
this.e("ActualMarkerTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(MarkerSeriesDescription.prototype, "markerBrush", {
get: function () {
return this.c9;
},
set: function (a) {
this.c9 = a;
this.e("MarkerBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(MarkerSeriesDescription.prototype, "actualMarkerBrush", {
get: function () {
return this.c6;
},
set: function (a) {
this.c6 = a;
this.e("ActualMarkerBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(MarkerSeriesDescription.prototype, "markerOutline", {
get: function () {
return this.db;
},
set: function (a) {
this.db = a;
this.e("MarkerOutline");
},
enumerable: false,
configurable: true
});
Object.defineProperty(MarkerSeriesDescription.prototype, "actualMarkerOutline", {
get: function () {
return this.c7;
},
set: function (a) {
this.c7 = a;
this.e("ActualMarkerOutline");
},
enumerable: false,
configurable: true
});
MarkerSeriesDescription.$t = markType(MarkerSeriesDescription, 'MarkerSeriesDescription', SeriesDescription.$);
return MarkerSeriesDescription;
}(SeriesDescription));
export { MarkerSeriesDescription };