igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
40 lines (39 loc) • 1.59 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 { __extends } from "tslib";
import { Base, markType } from "igniteui-react-core";
/**
* @hidden
*/
var Stacked100DataPreparer = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(Stacked100DataPreparer, _super);
function Stacked100DataPreparer() {
return _super !== null && _super.apply(this, arguments) || this;
}
Stacked100DataPreparer.a = function (a) {
if (a.dp == null) {
return;
}
var b = Number.POSITIVE_INFINITY;
var c = Number.NEGATIVE_INFINITY;
for (var d = 0; d < a.dp.count; d++) {
var 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 = markType(Stacked100DataPreparer, 'Stacked100DataPreparer');
return Stacked100DataPreparer;
}(Base));
export { Stacked100DataPreparer };