UNPKG

igniteui-react-core

Version:
86 lines (85 loc) 2.73 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 { LegendBaseDescription } from "./LegendBaseDescription"; import { markType } from "./type"; /** * @hidden */ var LegendDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(LegendDescription, _super); function LegendDescription() { var _this = _super.call(this) || this; _this.aa = null; _this.w = null; _this.x = null; _this.y = null; _this.z = null; return _this; } Object.defineProperty(LegendDescription.prototype, "width", { get: function () { return this.aa; }, set: function (a) { this.aa = a; this.g("Width"); }, enumerable: false, configurable: true }); Object.defineProperty(LegendDescription.prototype, "height", { get: function () { return this.w; }, set: function (a) { this.w = a; this.g("Height"); }, enumerable: false, configurable: true }); LegendDescription.prototype.get_type = function () { return "Legend"; }; Object.defineProperty(LegendDescription.prototype, "orientation", { get: function () { return this.x; }, set: function (a) { this.x = a; this.g("Orientation"); }, enumerable: false, configurable: true }); Object.defineProperty(LegendDescription.prototype, "textColor", { get: function () { return this.y; }, set: function (a) { this.y = a; this.g("TextColor"); }, enumerable: false, configurable: true }); Object.defineProperty(LegendDescription.prototype, "textStyle", { get: function () { return this.z; }, set: function (a) { this.z = a; this.g("TextStyle"); }, enumerable: false, configurable: true }); LegendDescription.$t = markType(LegendDescription, 'LegendDescription', LegendBaseDescription.$); return LegendDescription; }(LegendBaseDescription)); export { LegendDescription };