UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

56 lines (55 loc) 1.95 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 { constructor() { super(); this.ha = null; this.g6 = 0; this.g7 = 0; this.hb = null; } get_type() { return "WaterfallSeries"; } get negativeBrush() { return this.ha; } set negativeBrush(a) { this.ha = a; this.j("NegativeBrush"); } get radiusX() { return this.g6; } set radiusX(a) { this.g6 = a; this.j("RadiusX"); } get radiusY() { return this.g7; } set radiusY(a) { this.g7 = a; this.j("RadiusY"); } get negativeOutline() { return this.hb; } set negativeOutline(a) { this.hb = a; this.j("NegativeOutline"); } } WaterfallSeriesDescription.$t = markType(WaterfallSeriesDescription, 'WaterfallSeriesDescription', HorizontalAnchoredCategorySeriesDescription.$); return WaterfallSeriesDescription; })();