igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
56 lines (55 loc) • 1.95 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 {
constructor() {
super();
this.g5 = null;
this.g1 = 0;
this.g2 = 0;
this.g6 = null;
}
get_type() {
return "WaterfallSeries";
}
get negativeBrush() {
return this.g5;
}
set negativeBrush(a) {
this.g5 = a;
this.g("NegativeBrush");
}
get radiusX() {
return this.g1;
}
set radiusX(a) {
this.g1 = a;
this.g("RadiusX");
}
get radiusY() {
return this.g2;
}
set radiusY(a) {
this.g2 = a;
this.g("RadiusY");
}
get negativeOutline() {
return this.g6;
}
set negativeOutline(a) {
this.g6 = a;
this.g("NegativeOutline");
}
}
WaterfallSeriesDescription.$t = markType(WaterfallSeriesDescription, 'WaterfallSeriesDescription', HorizontalAnchoredCategorySeriesDescription.$);
return WaterfallSeriesDescription;
})();