UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

36 lines (35 loc) 1.45 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 { Base, markType } from "igniteui-react-core"; /** * @hidden */ export let Stacked100DataPreparer = /*@__PURE__*/ (() => { class Stacked100DataPreparer extends Base { static a(a) { if (a.dp == null) { return; } let b = Number.POSITIVE_INFINITY; let c = Number.NEGATIVE_INFINITY; for (let d = 0; d < a.dp.count; d++) { let e = Math.abs(a.aa6[d]) + a.aa5[d]; if (e == 0) { b = Math.min(b, 0); c = Math.max(c, 0); continue; } b = Math.min(b, a.aa6[d] / e * 100); c = Math.max(c, a.aa5[d] / e * 100); } a.abp = b; a.abo = c; } } Stacked100DataPreparer.$t = /*@__PURE__*/ markType(Stacked100DataPreparer, 'Stacked100DataPreparer'); return Stacked100DataPreparer; })();