igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
98 lines (97 loc) • 3.67 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 { RangeCategorySeriesDescription } from "./RangeCategorySeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
var HorizontalRangeCategorySeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(HorizontalRangeCategorySeriesDescription, _super);
function HorizontalRangeCategorySeriesDescription() {
var _this = _super.call(this) || this;
_this.gq = null;
_this.gr = null;
_this.go = null;
_this.gm = null;
_this.gp = null;
_this.gn = null;
return _this;
}
HorizontalRangeCategorySeriesDescription.prototype.get_type = function () {
return "HorizontalRangeCategorySeries";
};
Object.defineProperty(HorizontalRangeCategorySeriesDescription.prototype, "xAxisRef", {
get: function () {
return this.gq;
},
set: function (a) {
this.gq = a;
this.j("XAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HorizontalRangeCategorySeriesDescription.prototype, "yAxisRef", {
get: function () {
return this.gr;
},
set: function (a) {
this.gr = a;
this.j("YAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HorizontalRangeCategorySeriesDescription.prototype, "lowMemberAsLegendLabel", {
get: function () {
return this.go;
},
set: function (a) {
this.go = a;
this.j("LowMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HorizontalRangeCategorySeriesDescription.prototype, "highMemberAsLegendLabel", {
get: function () {
return this.gm;
},
set: function (a) {
this.gm = a;
this.j("HighMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HorizontalRangeCategorySeriesDescription.prototype, "lowMemberAsLegendUnit", {
get: function () {
return this.gp;
},
set: function (a) {
this.gp = a;
this.j("LowMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HorizontalRangeCategorySeriesDescription.prototype, "highMemberAsLegendUnit", {
get: function () {
return this.gn;
},
set: function (a) {
this.gn = a;
this.j("HighMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
HorizontalRangeCategorySeriesDescription.$t = markType(HorizontalRangeCategorySeriesDescription, 'HorizontalRangeCategorySeriesDescription', RangeCategorySeriesDescription.$);
return HorizontalRangeCategorySeriesDescription;
}(RangeCategorySeriesDescription));
export { HorizontalRangeCategorySeriesDescription };