igniteui-react-core
Version:
Ignite UI React Core.
170 lines (169 loc) • 5.53 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 { 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.hk = false;
_this.hy = null;
_this.ht = null;
_this.hw = null;
_this.hx = null;
_this.hv = null;
_this.hu = null;
_this.hs = null;
_this.hm = 0;
_this.hi = null;
_this.ho = 0;
_this.hp = 0;
return _this;
}
AnchoredRadialSeriesDescription.prototype.get_type = function () {
return "AnchoredRadialSeries";
};
Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "useCategoryNormalizedValues", {
get: function () {
return this.hk;
},
set: function (a) {
this.hk = a;
this.j("UseCategoryNormalizedValues");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "valueMemberPath", {
get: function () {
return this.hy;
},
set: function (a) {
this.hy = a;
this.j("ValueMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "highlightedValueMemberPath", {
get: function () {
return this.ht;
},
set: function (a) {
this.ht = a;
this.j("HighlightedValueMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "valueMemberAsLegendLabel", {
get: function () {
return this.hw;
},
set: function (a) {
this.hw = a;
this.j("ValueMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "valueMemberAsLegendUnit", {
get: function () {
return this.hx;
},
set: function (a) {
this.hx = a;
this.j("ValueMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "trendLineType", {
get: function () {
return this.hv;
},
set: function (a) {
this.hv = a;
this.j("TrendLineType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "trendLineBrush", {
get: function () {
return this.hu;
},
set: function (a) {
this.hu = a;
this.j("TrendLineBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "actualTrendLineBrush", {
get: function () {
return this.hs;
},
set: function (a) {
this.hs = a;
this.j("ActualTrendLineBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "trendLineThickness", {
get: function () {
return this.hm;
},
set: function (a) {
this.hm = a;
this.j("TrendLineThickness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "trendLineDashArray", {
get: function () {
return this.hi;
},
set: function (a) {
this.hi = a;
this.j("TrendLineDashArray");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "trendLinePeriod", {
get: function () {
return this.ho;
},
set: function (a) {
this.ho = a;
this.j("TrendLinePeriod");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AnchoredRadialSeriesDescription.prototype, "trendLineZIndex", {
get: function () {
return this.hp;
},
set: function (a) {
this.hp = a;
this.j("TrendLineZIndex");
},
enumerable: false,
configurable: true
});
AnchoredRadialSeriesDescription.$t = markType(AnchoredRadialSeriesDescription, 'AnchoredRadialSeriesDescription', RadialBaseDescription.$);
return AnchoredRadialSeriesDescription;
}(RadialBaseDescription));
export { AnchoredRadialSeriesDescription };