UNPKG

igniteui-react-core

Version:
98 lines (97 loc) 3.54 kB
/* 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 VerticalRangeCategorySeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(VerticalRangeCategorySeriesDescription, _super); function VerticalRangeCategorySeriesDescription() { var _this = _super.call(this) || this; _this.gs = null; _this.gt = null; _this.gq = null; _this.go = null; _this.gr = null; _this.gp = null; return _this; } VerticalRangeCategorySeriesDescription.prototype.get_type = function () { return "VerticalRangeCategorySeries"; }; Object.defineProperty(VerticalRangeCategorySeriesDescription.prototype, "xAxisRef", { get: function () { return this.gs; }, set: function (a) { this.gs = a; this.j("XAxisRef"); }, enumerable: false, configurable: true }); Object.defineProperty(VerticalRangeCategorySeriesDescription.prototype, "yAxisRef", { get: function () { return this.gt; }, set: function (a) { this.gt = a; this.j("YAxisRef"); }, enumerable: false, configurable: true }); Object.defineProperty(VerticalRangeCategorySeriesDescription.prototype, "lowMemberAsLegendLabel", { get: function () { return this.gq; }, set: function (a) { this.gq = a; this.j("LowMemberAsLegendLabel"); }, enumerable: false, configurable: true }); Object.defineProperty(VerticalRangeCategorySeriesDescription.prototype, "highMemberAsLegendLabel", { get: function () { return this.go; }, set: function (a) { this.go = a; this.j("HighMemberAsLegendLabel"); }, enumerable: false, configurable: true }); Object.defineProperty(VerticalRangeCategorySeriesDescription.prototype, "lowMemberAsLegendUnit", { get: function () { return this.gr; }, set: function (a) { this.gr = a; this.j("LowMemberAsLegendUnit"); }, enumerable: false, configurable: true }); Object.defineProperty(VerticalRangeCategorySeriesDescription.prototype, "highMemberAsLegendUnit", { get: function () { return this.gp; }, set: function (a) { this.gp = a; this.j("HighMemberAsLegendUnit"); }, enumerable: false, configurable: true }); VerticalRangeCategorySeriesDescription.$t = markType(VerticalRangeCategorySeriesDescription, 'VerticalRangeCategorySeriesDescription', RangeCategorySeriesDescription.$); return VerticalRangeCategorySeriesDescription; }(RangeCategorySeriesDescription)); export { VerticalRangeCategorySeriesDescription };