igniteui-react-core
Version:
Ignite UI React Core.
56 lines (55 loc) • 1.91 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 { HorizontalAnchoredCategorySeriesDescription } from "./HorizontalAnchoredCategorySeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let WaterfallSeriesDescription = /*@__PURE__*/ (() => {
class WaterfallSeriesDescription extends HorizontalAnchoredCategorySeriesDescription {
get_type() {
return "WaterfallSeries";
}
constructor() {
super();
this.hc = null;
this.g8 = 0;
this.g9 = 0;
this.hd = null;
}
get negativeBrush() {
return this.hc;
}
set negativeBrush(a) {
this.hc = a;
this.j("NegativeBrush");
}
get radiusX() {
return this.g8;
}
set radiusX(a) {
this.g8 = a;
this.j("RadiusX");
}
get radiusY() {
return this.g9;
}
set radiusY(a) {
this.g9 = a;
this.j("RadiusY");
}
get negativeOutline() {
return this.hd;
}
set negativeOutline(a) {
this.hd = a;
this.j("NegativeOutline");
}
}
WaterfallSeriesDescription.$t = /*@__PURE__*/ markType(WaterfallSeriesDescription, 'WaterfallSeriesDescription', HorizontalAnchoredCategorySeriesDescription.$);
return WaterfallSeriesDescription;
})();