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_abs = function () { return true; }; Stacked100BarSeries.prototype.jt = function () { if (!isNaN_(this.js)) { return _super.prototype.jt.call(this); } return Defaults.h; }; Stacked100BarSeries.prototype.ac = function () { _super.prototype.ac.call(this); this.r9(false); }; Stacked100BarSeries.prototype.ct = function () { return new Stacked100BarSeriesView(this); }; Stacked100BarSeries.prototype.ri = function (a) { _super.prototype.ri.call(this, a); this.acx = a; }; Stacked100BarSeries.prototype.abj = function () { return this.acx; }; Stacked100BarSeries.prototype.ab9 = function () { _super.prototype.ab9.call(this); Stacked100DataPreparer.a(this); }; Stacked100BarSeries.prototype.aby = function (a, b) { var c = 0; for (var d = 0; d < this.series.count; d++) { c += this.series._inner[d].an.item(b); } return (this.series._inner[a].an.item(b) / c) * 100; }; Object.defineProperty(Stacked100BarSeries.prototype, "useHighMarkerFidelity", { get: function () { return this.aac; }, 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.xw = Defaults.c; this.di.jz = Defaults.i; } }; Stacked100BarSeriesView.$t = markType(Stacked100BarSeriesView, 'Stacked100BarSeriesView', StackedBarSeriesView.$); return Stacked100BarSeriesView; }(StackedBarSeriesView)); export { Stacked100BarSeriesView };