igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
74 lines (73 loc) • 2.78 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 RangeCategorySeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(RangeCategorySeriesDescription, _super);
function RangeCategorySeriesDescription() {
var _this = _super.call(this) || this;
_this.gh = null;
_this.gg = null;
_this.gf = null;
_this.ge = null;
return _this;
}
RangeCategorySeriesDescription.prototype.get_type = function () {
return "RangeCategorySeries";
};
Object.defineProperty(RangeCategorySeriesDescription.prototype, "lowMemberPath", {
get: function () {
return this.gh;
},
set: function (a) {
this.gh = a;
this.j("LowMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RangeCategorySeriesDescription.prototype, "highMemberPath", {
get: function () {
return this.gg;
},
set: function (a) {
this.gg = a;
this.j("HighMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RangeCategorySeriesDescription.prototype, "highlightedLowMemberPath", {
get: function () {
return this.gf;
},
set: function (a) {
this.gf = a;
this.j("HighlightedLowMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RangeCategorySeriesDescription.prototype, "highlightedHighMemberPath", {
get: function () {
return this.ge;
},
set: function (a) {
this.ge = a;
this.j("HighlightedHighMemberPath");
},
enumerable: false,
configurable: true
});
RangeCategorySeriesDescription.$t = markType(RangeCategorySeriesDescription, 'RangeCategorySeriesDescription', CategorySeriesDescription.$);
return RangeCategorySeriesDescription;
}(CategorySeriesDescription));
export { RangeCategorySeriesDescription };