igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
146 lines (145 loc) • 5.04 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 { CategorySeriesDescription } from "./CategorySeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
var AnchoredCategorySeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(AnchoredCategorySeriesDescription, _super);
function AnchoredCategorySeriesDescription() {
var _this = _super.call(this) || this;
_this.ee = null;
_this.ec = null;
_this.ed = null;
_this.eb = null;
_this.ea = null;
_this.d7 = null;
_this.d3 = 0;
_this.d5 = 0;
_this.d9 = null;
_this.d8 = null;
return _this;
}
AnchoredCategorySeriesDescription.prototype.get_type = function () {
return "AnchoredCategorySeries";
};
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "valueMemberPath", {
get: function () {
return this.ee;
},
set: function (a) {
this.ee = a;
this.e("ValueMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "valueMemberAsLegendLabel", {
get: function () {
return this.ec;
},
set: function (a) {
this.ec = a;
this.e("ValueMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "valueMemberAsLegendUnit", {
get: function () {
return this.ed;
},
set: function (a) {
this.ed = a;
this.e("ValueMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "trendLineType", {
get: function () {
return this.eb;
},
set: function (a) {
this.eb = a;
this.e("TrendLineType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "trendLineBrush", {
get: function () {
return this.ea;
},
set: function (a) {
this.ea = a;
this.e("TrendLineBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "actualTrendLineBrush", {
get: function () {
return this.d7;
},
set: function (a) {
this.d7 = a;
this.e("ActualTrendLineBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "trendLineThickness", {
get: function () {
return this.d3;
},
set: function (a) {
this.d3 = a;
this.e("TrendLineThickness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "trendLinePeriod", {
get: function () {
return this.d5;
},
set: function (a) {
this.d5 = a;
this.e("TrendLinePeriod");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "markerCollisionAvoidance", {
get: function () {
return this.d9;
},
set: function (a) {
this.d9 = a;
this.e("MarkerCollisionAvoidance");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "consolidatedItemHitTestBehavior", {
get: function () {
return this.d8;
},
set: function (a) {
this.d8 = a;
this.e("ConsolidatedItemHitTestBehavior");
},
enumerable: false,
configurable: true
});
AnchoredCategorySeriesDescription.$t = markType(AnchoredCategorySeriesDescription, 'AnchoredCategorySeriesDescription', CategorySeriesDescription.$);
return AnchoredCategorySeriesDescription;
}(CategorySeriesDescription));
export { AnchoredCategorySeriesDescription };