igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
164 lines (163 loc) • 5.25 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-angular-core";
import { Point_$type, typeCast, runOn, markType, markDep } from "igniteui-angular-core";
import { ScatterFrame } from "./ScatterFrame";
import { ScatterSplineSeriesView } from "./ScatterSplineSeriesView";
import { Defaults } from "./Defaults";
import { CoreGeometryUtil } from "igniteui-angular-core";
import { Clipper } from "igniteui-angular-core";
import { OwnedPoint } from "./OwnedPoint";
import { ScalerParams } from "./ScalerParams";
import { PathGeometry } from "igniteui-angular-core";
import { Numeric } from "igniteui-angular-core";
import { PropertyMetadata } from "igniteui-angular-core";
import { isNaN_ } from "igniteui-angular-core";
/**
* @hidden
*/
export class ScatterSplineSeries extends ScatterBase {
static { this.$t = markType(ScatterSplineSeries, 'ScatterSplineSeries', ScatterBase.$); }
bk() {
return new ScatterSplineSeries();
}
get_f4() {
return true;
}
constructor() {
super();
this.ab = ScatterSplineSeries.$;
this.aae = new ScatterFrame();
this.aag = new ScatterFrame();
this.aac = new ScatterFrame();
}
ct() {
return new ScatterSplineSeriesView(this);
}
aa8() {
return true;
}
ju() {
if (!isNaN_(this.jt)) {
return super.ju();
}
return Defaults.ak;
}
rs(a, b, c, d) {
super.rs(a, b, c, d);
switch (b) {
case ScatterSplineSeries.$$p[0]:
this.sa(false);
this.q2();
break;
}
}
g4(a, b) {
if (this.x5(a, b)) {
return true;
}
if (this.dp.count <= this.abk) {
let c = this.cw;
let d = c.dz;
if (CoreGeometryUtil.j(a, d, this.i3(b))) {
return true;
}
}
return false;
}
acr(a, b) {
super.acr(a, b);
a.q.clear();
a.y.clear();
let c = b.ca;
let d = b.b9;
let e = this.getEffectiveViewport1(b);
let f = this.im * this.im;
let g = Math.min(this.aat != null ? this.aat.count : 0, this.aau != null ? this.aau.count : 0);
let h = new ScalerParams(0, c, d, this.z8.d, e);
let i = ((() => {
let $ret = new ScalerParams(0, c, d, this.z8.e, e);
$ret.b = this.i7();
return $ret;
})());
let j = (k) => this.z8.a.gc(this.aat.item(k), h);
let k = (l) => this.z8.b.gc(this.aau.item(l), i);
let l = ((() => {
let $ret = new Clipper(0, d, false);
$ret.i = a.q;
return $ret;
})());
for (let m = 0; m < g;) {
let n = m;
++m;
while (m < g && this.adz(j, k, n, m) < f) {
++m;
}
if (g > this.abl) {
l.j(this.ad3(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.y.containsKey(o.a)) {
a.y.addItem(o.a, o);
}
}
}
if (g > this.abl) {
l.i = null;
}
}
ad3(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 };
}
adz(a, b, c, d) {
let e = a(d) - a(c);
let f = b(d) - b(c);
return e * e + f * f;
}
get_aa2() {
return true;
}
pk(a, b) {
super.pk(a, b);
let c = typeCast(ScatterSplineSeriesView.$, b);
c.dm(false);
}
ac2(a, b) {
this.pk(false, b);
super.ac2(a, b);
this.acv(a);
let c = typeCast(ScatterSplineSeriesView.$, b);
let d = c.dz;
this.aal.az(this, this.aa7(), runOn(this, this.z1));
let e = false;
let f = this.aal.b;
if (f != null) {
e = true;
}
if (e) {
this.acn(-1, this.aat.count, b.t);
}
this.aal.ad(d, true, false, true, false);
c.dz.an = new PathGeometry();
c.dz.an.c = Numeric.h(a.q.count, (g) => a.q._inner[g].x, (g) => a.q._inner[g].y, this.ad0);
}
static { this.$$p = markDep(DependencyProperty, PropertyMetadata, ScatterSplineSeries, 'raisePropertyChanged', ['Stiffness:ad0:ad2', [1, 0.5]]); }
}