igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
33 lines (32 loc) • 1.25 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 { Base, markType } from "igniteui-angular-core";
/**
* @hidden
*/
export class Stacked100DataPreparer extends Base {
static { this.$t = markType(Stacked100DataPreparer, 'Stacked100DataPreparer'); }
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.ab7[d]) + a.ab6[d];
if (e == 0) {
b = Math.min(b, 0);
c = Math.max(c, 0);
continue;
}
b = Math.min(b, a.ab7[d] / e * 100);
c = Math.max(c, a.ab6[d] / e * 100);
}
a.acq = b;
a.acp = c;
}
}