UNPKG

igniteui-react-charts

Version:

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

164 lines (163 loc) 6.05 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 { ScatterBase } from "./ScatterBase"; import { DependencyProperty } from "igniteui-react-core"; import { Point_$type, typeCast, runOn, markType, markDep } from "igniteui-react-core"; import { ScatterFrame } from "./ScatterFrame"; import { ScatterSplineSeriesView } from "./ScatterSplineSeriesView"; import { Defaults } from "./Defaults"; import { Clipper } from "igniteui-react-core"; import { OwnedPoint } from "./OwnedPoint"; import { ScalerParams } from "./ScalerParams"; import { PathGeometry } from "igniteui-react-core"; import { Numeric } from "igniteui-react-core"; import { PropertyMetadata } from "igniteui-react-core"; import { isNaN_ } from "igniteui-react-core"; /** * @hidden */ var ScatterSplineSeries = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ScatterSplineSeries, _super); function ScatterSplineSeries() { var _this = _super.call(this) || this; _this.ab = ScatterSplineSeries.$; _this.y4 = new ScatterFrame(); _this.y6 = new ScatterFrame(); _this.y2 = new ScatterFrame(); return _this; } ScatterSplineSeries.prototype.bk = function () { return new ScatterSplineSeries(); }; ScatterSplineSeries.prototype.get_f0 = function () { return true; }; ScatterSplineSeries.prototype.ct = function () { return new ScatterSplineSeriesView(this); }; ScatterSplineSeries.prototype.zy = function () { return true; }; ScatterSplineSeries.prototype.jk = function () { if (!isNaN_(this.jj)) { return _super.prototype.jk.call(this); } return Defaults.x; }; ScatterSplineSeries.prototype.ra = function (a, b, c, d) { _super.prototype.ra.call(this, a, b, c, d); switch (b) { case ScatterSplineSeries.$$p[0]: this.rs(false); this.ql(); break; } }; ScatterSplineSeries.prototype.b3 = function () { if (this.b4 == 0) { return 2; } else { return _super.prototype.b3.call(this); } }; ScatterSplineSeries.prototype.abh = function (a, b) { var _this = this; _super.prototype.abh.call(this, a, b); a.n.clear(); a.v.clear(); var c = b.b2; var d = b.b1; var e = this.getEffectiveViewport1(b); var f = this.id * this.id; var g = Math.min(this.zj != null ? this.zj.count : 0, this.zk != null ? this.zk.count : 0); var h = new ScalerParams(0, c, d, this.yy.d, e); var i = ((function () { var $ret = new ScalerParams(0, c, d, _this.yy.e, e); $ret.b = _this.iy(); return $ret; })()); var j = function (k) { return _this.yy.a.el(_this.zj.item(k), h); }; var k = function (l) { return _this.yy.b.el(_this.zk.item(l), i); }; var l = ((function () { var $ret = new Clipper(0, d, false); $ret.i = a.n; return $ret; })()); for (var m = 0; m < g;) { var n = m; ++m; while (m < g && this.acp(j, k, n, m) < f) { ++m; } if (g > this.aab) { l.j(this.act(j, k, n, m - 1)); } else { var o = new OwnedPoint(); o.c = { $type: Point_$type, x: j(n), y: k(n) }; o.a = this.dp.item(n); if (!a.v.containsKey(o.a)) { a.v.addItem(o.a, o); } } } if (g > this.aab) { l.i = null; } }; ScatterSplineSeries.prototype.act = function (a, b, c, d) { if (c == d) { return { $type: Point_$type, x: a(c), y: b(c) }; } var e = 0; var f = 0; var g = (d - c + 1); for (var h = c; h <= d; ++h) { e += a(h); f += b(h); } return { $type: Point_$type, x: e / g, y: f / g }; }; ScatterSplineSeries.prototype.acp = function (a, b, c, d) { var e = a(d) - a(c); var f = b(d) - b(c); return e * e + f * f; }; ScatterSplineSeries.prototype.get_zs = function () { return true; }; ScatterSplineSeries.prototype.o5 = function (a, b) { _super.prototype.o5.call(this, a, b); var c = typeCast(ScatterSplineSeriesView.$, b); c.dd(false); }; ScatterSplineSeries.prototype.abs = function (a, b) { this.o5(false, b); _super.prototype.abs.call(this, a, b); this.abk(a); var c = typeCast(ScatterSplineSeriesView.$, b); var d = c.dq; this.zb.az(this, this.zx(), runOn(this, this.yr)); var e = false; var f = this.zb.b; if (f != null) { e = true; } if (e) { this.abd(-1, this.zj.count, b.r); } this.zb.ad(d, true, false, true, false); c.dq.an = new PathGeometry(); c.dq.an.c = Numeric.h(a.n.count, function (g) { return a.n._inner[g].x; }, function (g) { return a.n._inner[g].y; }, this.acq); }; ScatterSplineSeries.$t = markType(ScatterSplineSeries, 'ScatterSplineSeries', ScatterBase.$); ScatterSplineSeries.$$p = markDep(DependencyProperty, PropertyMetadata, ScatterSplineSeries, 'raisePropertyChanged', ['Stiffness:acq:acs', [1, 0.5]]); return ScatterSplineSeries; }(ScatterBase)); export { ScatterSplineSeries };