UNPKG

igniteui-angular-charts

Version:

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

185 lines (184 loc) 6.5 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 { SplineSeriesBase } from "./SplineSeriesBase"; import { CategoryLineRasterizer } from "./CategoryLineRasterizer"; import { typeCast, runOn, markType } from "igniteui-angular-core"; import { Path } from "igniteui-angular-core"; import { ScalerParams } from "./ScalerParams"; import { SplineSeriesBaseView } from "./SplineSeriesBaseView"; import { Defaults } from "./Defaults"; import { ISortingAxis_$type } from "./ISortingAxis"; /** * @hidden */ var SplineSeries = /** @class */ /*@__PURE__*/ (function (_super) { __extends(SplineSeries, _super); function SplineSeries() { var _this = _super.call(this) || this; _this.adf = null; _this.adf = new CategoryLineRasterizer(); _this.ab = SplineSeries.$; return _this; } SplineSeries.prototype.bj = function () { return new SplineSeries(); }; SplineSeries.prototype.get_fz = function () { return true; }; SplineSeries.prototype.cs = function () { return new SplineSeriesView(this); }; SplineSeries.prototype.zn = function () { return true; }; SplineSeries.prototype.q0 = function (a) { _super.prototype.q0.call(this, a); this.adg = a; }; SplineSeries.prototype.preferredCategoryMode = function (a) { return 0; }; SplineSeries.prototype.o4 = function (a, b) { _super.prototype.o4.call(this, a, b); var c = b; c.di(); }; SplineSeries.prototype.aaj = function (a, b) { _super.prototype.aaj.call(this, a, b); var c = b; var d = c.cw.d; var e = typeCast(SplineSeriesView.$, b); var f = a.f; var g = this.getEffectiveViewport1(b); this.y1.a2(this, this.zl(), runOn(this, this.yl), this.zu(b), this.zv(b)); var h = false; var i = this.y1.b; if (i != null) { h = true; } if (h) { var j = new ScalerParams(0, b.by, b.bx, this.acc.ch, g); this.aaf(f, -1, this.valueColumn.count, this.acc, j, b.q, -1); } var k = e.dp; var l = e.dq; var m = e.dn; this.y1.ad(k, true, false, true, false); this.y1.ad(l, true, false, true, false); this.y1.ad(m, false, true, false, false); m._opacity = 0.75 * this.y1.j; if (b.c0(a)) { e.dj(f.count, f, true, 1, this.aas(f, f.count - 1, b.bx, b.by), d, this.ic); b.c3(a); } }; Object.defineProperty(SplineSeries.prototype, "useHighMarkerFidelity", { get: function () { return this.zp; }, enumerable: false, configurable: true }); SplineSeries.$t = markType(SplineSeries, 'SplineSeries', SplineSeriesBase.$); return SplineSeries; }(SplineSeriesBase)); export { SplineSeries }; /** * @hidden */ var SplineSeriesView = /** @class */ /*@__PURE__*/ (function (_super) { __extends(SplineSeriesView, _super); function SplineSeriesView(a) { var _this = _super.call(this, a) || this; _this.dh = null; _this.ds = new Path(); _this.dr = new Path(); _this.dt = new Path(); _this.dm = new Path(); _this.dl = new Path(); _this.dk = new Path(); _this.dh = a; return _this; } SplineSeriesView.prototype.au = function () { _super.prototype.au.call(this); if (!this.q) { this.dh.w9 = Defaults.e; } }; Object.defineProperty(SplineSeriesView.prototype, "dp", { get: function () { return this.ds; }, enumerable: false, configurable: true }); Object.defineProperty(SplineSeriesView.prototype, "dq", { get: function () { return this.dt; }, enumerable: false, configurable: true }); Object.defineProperty(SplineSeriesView.prototype, "dn", { get: function () { return this.dr; }, enumerable: false, configurable: true }); SplineSeriesView.prototype.di = function () { this.dr.an = null; this.ds.an = null; this.dt.an = null; this.as(); }; SplineSeriesView.prototype.dj = function (a, b, c, d, e, f, g) { this.dh.adf.a = typeCast(ISortingAxis_$type, this.cy.fetchXAxis()) !== null ? true : false; this.dh.adf.m(this.ds, this.dr, this.dt, a, b, c, d, e, f, g); this.as(); }; SplineSeriesView.prototype.be = function () { _super.prototype.be.call(this); this.dl.an = this.ds.an; this.dm.an = this.dt.an; this.dk.an = this.dr.an; var a = this.br(); this.dl._stroke = a; this.dl.ad = this.e.id + 3; this.dm._stroke = a; this.dm.ad = this.e.id + 3; this.dk._fill = a; this.dk._opacity = 1; }; SplineSeriesView.prototype.a8 = function (a, b) { _super.prototype.a8.call(this, a, b); if (a.d) { if (b) { a.t(this.dk); a.t(this.dl); a.t(this.dm); } else { a.t(this.dr); a.t(this.ds); a.t(this.dt); } } }; SplineSeriesView.prototype.an = function (a) { _super.prototype.an.call(this, a); this.e.bc.exportPathData(a, this.ds, "lowerShape", ["Lower", "Main"]); this.e.bc.exportPathData(a, this.dt, "upperShape", ["Upper"]); this.e.bc.exportPathData(a, this.dr, "translucentShape", ["Translucent"]); }; SplineSeriesView.$t = markType(SplineSeriesView, 'SplineSeriesView', SplineSeriesBaseView.$); return SplineSeriesView; }(SplineSeriesBaseView)); export { SplineSeriesView };