UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

134 lines (133 loc) 4.57 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 { RadialBaseDescription } from "./RadialBaseDescription"; import { markType } from "./type"; /** * @hidden */ var AnchoredRadialSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(AnchoredRadialSeriesDescription, _super); function AnchoredRadialSeriesDescription() { var _this = _super.call(this) || this; _this.ee = null; _this.ec = null; _this.ed = null; _this.eb = null; _this.ea = null; _this.d9 = null; _this.d3 = 0; _this.d5 = 0; _this.d6 = 0; return _this; } AnchoredRadialSeriesDescription.prototype.get_type = function () { return "AnchoredRadialSeries"; }; Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "valueMemberPath", { get: function () { return this.ee; }, set: function (a) { this.ee = a; this.e("ValueMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "valueMemberAsLegendLabel", { get: function () { return this.ec; }, set: function (a) { this.ec = a; this.e("ValueMemberAsLegendLabel"); }, enumerable: false, configurable: true }); Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "valueMemberAsLegendUnit", { get: function () { return this.ed; }, set: function (a) { this.ed = a; this.e("ValueMemberAsLegendUnit"); }, enumerable: false, configurable: true }); Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "trendLineType", { get: function () { return this.eb; }, set: function (a) { this.eb = a; this.e("TrendLineType"); }, enumerable: false, configurable: true }); Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "trendLineBrush", { get: function () { return this.ea; }, set: function (a) { this.ea = a; this.e("TrendLineBrush"); }, enumerable: false, configurable: true }); Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "actualTrendLineBrush", { get: function () { return this.d9; }, set: function (a) { this.d9 = a; this.e("ActualTrendLineBrush"); }, enumerable: false, configurable: true }); Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "trendLineThickness", { get: function () { return this.d3; }, set: function (a) { this.d3 = a; this.e("TrendLineThickness"); }, enumerable: false, configurable: true }); Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "trendLinePeriod", { get: function () { return this.d5; }, set: function (a) { this.d5 = a; this.e("TrendLinePeriod"); }, enumerable: false, configurable: true }); Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "trendLineZIndex", { get: function () { return this.d6; }, set: function (a) { this.d6 = a; this.e("TrendLineZIndex"); }, enumerable: false, configurable: true }); AnchoredRadialSeriesDescription.$t = markType(AnchoredRadialSeriesDescription, 'AnchoredRadialSeriesDescription', RadialBaseDescription.$); return AnchoredRadialSeriesDescription; }(RadialBaseDescription)); export { AnchoredRadialSeriesDescription };