UNPKG

igniteui-react-core

Version:
40 lines (39 loc) 1.48 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 { VerticalRangeCategorySeriesDescription } from "./VerticalRangeCategorySeriesDescription"; import { markType } from "./type"; /** * @hidden */ export let RangeBarSeriesDescription = /*@__PURE__*/ (() => { class RangeBarSeriesDescription extends VerticalRangeCategorySeriesDescription { get_type() { return "RangeBarSeries"; } constructor() { super(); this.g0 = 0; this.g1 = 0; } get radiusX() { return this.g0; } set radiusX(a) { this.g0 = a; this.j("RadiusX"); } get radiusY() { return this.g1; } set radiusY(a) { this.g1 = a; this.j("RadiusY"); } } RangeBarSeriesDescription.$t = /*@__PURE__*/ markType(RangeBarSeriesDescription, 'RangeBarSeriesDescription', VerticalRangeCategorySeriesDescription.$); return RangeBarSeriesDescription; })();