igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
170 lines (169 loc) • 5.79 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.gs = null;
_this.gm = null;
_this.gq = null;
_this.gr = null;
_this.gp = null;
_this.go = null;
_this.gk = null;
_this.gg = 0;
_this.ge = null;
_this.gi = 0;
_this.gn = null;
_this.gl = null;
return _this;
}
AnchoredCategorySeriesDescription.prototype.get_type = function () {
return "AnchoredCategorySeries";
};
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "valueMemberPath", {
get: function () {
return this.gs;
},
set: function (a) {
this.gs = a;
this.j("ValueMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "highlightedValueMemberPath", {
get: function () {
return this.gm;
},
set: function (a) {
this.gm = a;
this.j("HighlightedValueMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "valueMemberAsLegendLabel", {
get: function () {
return this.gq;
},
set: function (a) {
this.gq = a;
this.j("ValueMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "valueMemberAsLegendUnit", {
get: function () {
return this.gr;
},
set: function (a) {
this.gr = a;
this.j("ValueMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "trendLineType", {
get: function () {
return this.gp;
},
set: function (a) {
this.gp = a;
this.j("TrendLineType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "trendLineBrush", {
get: function () {
return this.go;
},
set: function (a) {
this.go = a;
this.j("TrendLineBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "actualTrendLineBrush", {
get: function () {
return this.gk;
},
set: function (a) {
this.gk = a;
this.j("ActualTrendLineBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "trendLineThickness", {
get: function () {
return this.gg;
},
set: function (a) {
this.gg = a;
this.j("TrendLineThickness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "trendLineDashArray", {
get: function () {
return this.ge;
},
set: function (a) {
this.ge = a;
this.j("TrendLineDashArray");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "trendLinePeriod", {
get: function () {
return this.gi;
},
set: function (a) {
this.gi = a;
this.j("TrendLinePeriod");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "markerCollisionAvoidance", {
get: function () {
return this.gn;
},
set: function (a) {
this.gn = a;
this.j("MarkerCollisionAvoidance");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredCategorySeriesDescription.prototype, "consolidatedItemHitTestBehavior", {
get: function () {
return this.gl;
},
set: function (a) {
this.gl = a;
this.j("ConsolidatedItemHitTestBehavior");
},
enumerable: false,
configurable: true
});
AnchoredCategorySeriesDescription.$t = markType(AnchoredCategorySeriesDescription, 'AnchoredCategorySeriesDescription', CategorySeriesDescription.$);
return AnchoredCategorySeriesDescription;
}(CategorySeriesDescription));
export { AnchoredCategorySeriesDescription };