UNPKG

igniteui-react-core

Version:
56 lines (55 loc) 1.91 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 { HorizontalAnchoredCategorySeriesDescription } from "./HorizontalAnchoredCategorySeriesDescription"; import { markType } from "./type"; /** * @hidden */ export let WaterfallSeriesDescription = /*@__PURE__*/ (() => { class WaterfallSeriesDescription extends HorizontalAnchoredCategorySeriesDescription { get_type() { return "WaterfallSeries"; } constructor() { super(); this.g3 = null; this.gz = 0; this.g0 = 0; this.g4 = null; } get negativeBrush() { return this.g3; } set negativeBrush(a) { this.g3 = a; this.g("NegativeBrush"); } get radiusX() { return this.gz; } set radiusX(a) { this.gz = a; this.g("RadiusX"); } get radiusY() { return this.g0; } set radiusY(a) { this.g0 = a; this.g("RadiusY"); } get negativeOutline() { return this.g4; } set negativeOutline(a) { this.g4 = a; this.g("NegativeOutline"); } } WaterfallSeriesDescription.$t = /*@__PURE__*/ markType(WaterfallSeriesDescription, 'WaterfallSeriesDescription', HorizontalAnchoredCategorySeriesDescription.$); return WaterfallSeriesDescription; })();