UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

78 lines (77 loc) 3.17 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 { StackedLineSeries } from "./StackedLineSeries"; import { IStacked100Series_$type } from "./IStacked100Series"; import { markType } from "igniteui-angular-core"; import { Stacked100DataPreparer } from "./Stacked100DataPreparer"; import { StackedLineSeriesView } from "./StackedLineSeriesView"; import { Defaults } from "./Defaults"; /** * @hidden */ var Stacked100LineSeries = /** @class */ /*@__PURE__*/ (function (_super) { __extends(Stacked100LineSeries, _super); function Stacked100LineSeries() { var _this = _super.call(this) || this; _this.ab = Stacked100LineSeries.$; return _this; } Stacked100LineSeries.prototype.cs = function () { return new Stacked100LineSeriesView(this); }; Stacked100LineSeries.prototype.q0 = function (a) { _super.prototype.q0.call(this, a); this.ab2 = a; }; Stacked100LineSeries.prototype.get_aa3 = function () { return true; }; Stacked100LineSeries.prototype.ac = function () { _super.prototype.ac.call(this); this.rq(false); }; Stacked100LineSeries.prototype.abk = function () { _super.prototype.abk.call(this); Stacked100DataPreparer.a(this); }; Stacked100LineSeries.prototype.aa9 = 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(Stacked100LineSeries.prototype, "useHighMarkerFidelity", { get: function () { return this.zp; }, enumerable: false, configurable: true }); Stacked100LineSeries.$t = markType(Stacked100LineSeries, 'Stacked100LineSeries', StackedLineSeries.$, [IStacked100Series_$type]); return Stacked100LineSeries; }(StackedLineSeries)); export { Stacked100LineSeries }; /** * @hidden */ var Stacked100LineSeriesView = /** @class */ /*@__PURE__*/ (function (_super) { __extends(Stacked100LineSeriesView, _super); function Stacked100LineSeriesView(a) { return _super.call(this, a) || this; } Stacked100LineSeriesView.prototype.au = function () { _super.prototype.au.call(this); if (!this.q) { this.c5.w9 = Defaults.e; } }; Stacked100LineSeriesView.$t = markType(Stacked100LineSeriesView, 'Stacked100LineSeriesView', StackedLineSeriesView.$); return Stacked100LineSeriesView; }(StackedLineSeriesView)); export { Stacked100LineSeriesView };