UNPKG

igniteui-react-charts

Version:

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

96 lines (95 loc) 3.68 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 { __extends } from "tslib"; import { StackedBarSeries } from "./StackedBarSeries"; import { IStacked100Series_$type } from "./IStacked100Series"; import { Defaults } from "./Defaults"; import { markType } from "igniteui-react-core"; import { Stacked100DataPreparer } from "./Stacked100DataPreparer"; import { isNaN_ } from "igniteui-react-core"; import { StackedBarSeriesView } from "./StackedBarSeriesView"; import { Stacked100BarBucketCalculator } from "./Stacked100BarBucketCalculator"; /** * @hidden */ var Stacked100BarSeries = /** @class */ /*@__PURE__*/ (function (_super) { __extends(Stacked100BarSeries, _super); function Stacked100BarSeries() { var _this = _super.call(this) || this; _this.ab = Stacked100BarSeries.$; return _this; } Stacked100BarSeries.prototype.get_abh = function () { return true; }; Stacked100BarSeries.prototype.jn = function () { if (!isNaN_(this.jm)) { return _super.prototype.jn.call(this); } return Defaults.h; }; Stacked100BarSeries.prototype.ac = function () { _super.prototype.ac.call(this); this.rz(false); }; Stacked100BarSeries.prototype.ct = function () { return new Stacked100BarSeriesView(this); }; Stacked100BarSeries.prototype.q8 = function (a) { _super.prototype.q8.call(this, a); this.acm = a; }; Stacked100BarSeries.prototype.aa8 = function () { return this.acm; }; Stacked100BarSeries.prototype.aby = function () { _super.prototype.aby.call(this); Stacked100DataPreparer.a(this); }; Stacked100BarSeries.prototype.abn = function (a, b) { var c = 0; for (var d = 0; d < this.series.count; d++) { c += this.series._inner[d].ak.item(b); } return (this.series._inner[a].ak.item(b) / c) * 100; }; Object.defineProperty(Stacked100BarSeries.prototype, "useHighMarkerFidelity", { get: function () { return this.z1; }, enumerable: false, configurable: true }); Stacked100BarSeries.$t = markType(Stacked100BarSeries, 'Stacked100BarSeries', StackedBarSeries.$, [IStacked100Series_$type]); return Stacked100BarSeries; }(StackedBarSeries)); export { Stacked100BarSeries }; /** * @hidden */ var Stacked100BarSeriesView = /** @class */ /*@__PURE__*/ (function (_super) { __extends(Stacked100BarSeriesView, _super); function Stacked100BarSeriesView(a) { var _this = _super.call(this, a) || this; _this.dp = null; _this.dp = a; return _this; } Stacked100BarSeriesView.prototype.da = function () { return new Stacked100BarBucketCalculator(this); }; Stacked100BarSeriesView.prototype.a4 = function () { _super.prototype.a4.call(this); if (!this.t) { this.di.xl = Defaults.c; this.di.jt = Defaults.i; } }; Stacked100BarSeriesView.$t = markType(Stacked100BarSeriesView, 'Stacked100BarSeriesView', StackedBarSeriesView.$); return Stacked100BarSeriesView; }(StackedBarSeriesView)); export { Stacked100BarSeriesView };