igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
161 lines (160 loc) • 5.64 kB
JavaScript
/*
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 { 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
*/
export let ScatterSplineSeries = /*@__PURE__*/ (() => {
class ScatterSplineSeries extends ScatterBase {
bk() {
return new ScatterSplineSeries();
}
get_f1() {
return true;
}
constructor() {
super();
this.ab = ScatterSplineSeries.$;
this.y7 = new ScatterFrame();
this.y9 = new ScatterFrame();
this.y5 = new ScatterFrame();
}
ct() {
return new ScatterSplineSeriesView(this);
}
z1() {
return true;
}
jl() {
if (!isNaN_(this.jk)) {
return super.jl();
}
return Defaults.ak;
}
rc(a, b, c, d) {
super.rc(a, b, c, d);
switch (b) {
case ScatterSplineSeries.$$p[0]:
this.ru(false);
this.qn();
break;
}
}
b3() {
if (this.b4 == 0) {
return 2;
}
else {
return super.b3();
}
}
abk(a, b) {
super.abk(a, b);
a.n.clear();
a.v.clear();
let c = b.ca;
let d = b.b9;
let e = this.getEffectiveViewport1(b);
let f = this.ie * this.ie;
let g = Math.min(this.zm != null ? this.zm.count : 0, this.zn != null ? this.zn.count : 0);
let h = new ScalerParams(0, c, d, this.y1.d, e);
let i = ((() => {
let $ret = new ScalerParams(0, c, d, this.y1.e, e);
$ret.b = this.iz();
return $ret;
})());
let j = (k) => this.y1.a.el(this.zm.item(k), h);
let k = (l) => this.y1.b.el(this.zn.item(l), i);
let l = ((() => {
let $ret = new Clipper(0, d, false);
$ret.i = a.n;
return $ret;
})());
for (let m = 0; m < g;) {
let n = m;
++m;
while (m < g && this.acs(j, k, n, m) < f) {
++m;
}
if (g > this.aae) {
l.j(this.acw(j, k, n, m - 1));
}
else {
let 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.aae) {
l.i = null;
}
}
acw(a, b, c, d) {
if (c == d) {
return { $type: Point_$type, x: a(c), y: b(c) };
}
let e = 0;
let f = 0;
let g = (d - c + 1);
for (let h = c; h <= d; ++h) {
e += a(h);
f += b(h);
}
return { $type: Point_$type, x: e / g, y: f / g };
}
acs(a, b, c, d) {
let e = a(d) - a(c);
let f = b(d) - b(c);
return e * e + f * f;
}
get_zv() {
return true;
}
o7(a, b) {
super.o7(a, b);
let c = typeCast(ScatterSplineSeriesView.$, b);
c.dm(false);
}
abv(a, b) {
this.o7(false, b);
super.abv(a, b);
this.abn(a);
let c = typeCast(ScatterSplineSeriesView.$, b);
let d = c.dz;
this.ze.az(this, this.z0(), runOn(this, this.yu));
let e = false;
let f = this.ze.b;
if (f != null) {
e = true;
}
if (e) {
this.abg(-1, this.zm.count, b.t);
}
this.ze.ad(d, true, false, true, false);
c.dz.an = new PathGeometry();
c.dz.an.c = Numeric.h(a.n.count, (g) => a.n._inner[g].x, (g) => a.n._inner[g].y, this.act);
}
}
ScatterSplineSeries.$t = /*@__PURE__*/ markType(ScatterSplineSeries, 'ScatterSplineSeries', ScatterBase.$);
ScatterSplineSeries.$$p = /*@__PURE__*/ markDep(DependencyProperty, PropertyMetadata, ScatterSplineSeries, 'raisePropertyChanged', ['Stiffness:act:acv', [1, 0.5]]);
return ScatterSplineSeries;
})();