igniteui-react-core
Version:
Ignite UI React Core.
74 lines (73 loc) • 2.65 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 { HorizontalAnchoredCategorySeriesDescription } from "./HorizontalAnchoredCategorySeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WaterfallSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WaterfallSeriesDescription, _super);
function WaterfallSeriesDescription() {
var _this = _super.call(this) || this;
_this.hc = null;
_this.g8 = 0;
_this.g9 = 0;
_this.hd = null;
return _this;
}
WaterfallSeriesDescription.prototype.get_type = function () {
return "WaterfallSeries";
};
Object.defineProperty(WaterfallSeriesDescription.prototype, "negativeBrush", {
get: function () {
return this.hc;
},
set: function (a) {
this.hc = a;
this.j("NegativeBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WaterfallSeriesDescription.prototype, "radiusX", {
get: function () {
return this.g8;
},
set: function (a) {
this.g8 = a;
this.j("RadiusX");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WaterfallSeriesDescription.prototype, "radiusY", {
get: function () {
return this.g9;
},
set: function (a) {
this.g9 = a;
this.j("RadiusY");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WaterfallSeriesDescription.prototype, "negativeOutline", {
get: function () {
return this.hd;
},
set: function (a) {
this.hd = a;
this.j("NegativeOutline");
},
enumerable: false,
configurable: true
});
WaterfallSeriesDescription.$t = markType(WaterfallSeriesDescription, 'WaterfallSeriesDescription', HorizontalAnchoredCategorySeriesDescription.$);
return WaterfallSeriesDescription;
}(HorizontalAnchoredCategorySeriesDescription));
export { WaterfallSeriesDescription };