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