igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
166 lines (165 loc) • 5.5 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 { 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
*/
export let SplineSeries = /*@__PURE__*/ (() => {
class SplineSeries extends SplineSeriesBase {
constructor() {
super();
this.adf = null;
this.adf = new CategoryLineRasterizer();
this.ab = SplineSeries.$;
}
bj() {
return new SplineSeries();
}
get_fz() {
return true;
}
cs() {
return new SplineSeriesView(this);
}
zn() {
return true;
}
q0(a) {
super.q0(a);
this.adg = a;
}
preferredCategoryMode(a) {
return 0;
}
o4(a, b) {
super.o4(a, b);
let c = b;
c.di();
}
aaj(a, b) {
super.aaj(a, b);
let c = b;
let d = c.cw.d;
let e = typeCast(SplineSeriesView.$, b);
let f = a.f;
let g = this.getEffectiveViewport1(b);
this.y1.a2(this, this.zl(), runOn(this, this.yl), this.zu(b), this.zv(b));
let h = false;
let i = this.y1.b;
if (i != null) {
h = true;
}
if (h) {
let 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);
}
let k = e.dp;
let l = e.dq;
let 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);
}
}
get useHighMarkerFidelity() {
return this.zp;
}
}
SplineSeries.$t = markType(SplineSeries, 'SplineSeries', SplineSeriesBase.$);
return SplineSeries;
})();
/**
* @hidden
*/
export let SplineSeriesView = /*@__PURE__*/ (() => {
class SplineSeriesView extends SplineSeriesBaseView {
constructor(a) {
super(a);
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;
}
au() {
super.au();
if (!this.q) {
this.dh.w9 = Defaults.e;
}
}
get dp() {
return this.ds;
}
get dq() {
return this.dt;
}
get dn() {
return this.dr;
}
di() {
this.dr.an = null;
this.ds.an = null;
this.dt.an = null;
this.as();
}
dj(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();
}
be() {
super.be();
this.dl.an = this.ds.an;
this.dm.an = this.dt.an;
this.dk.an = this.dr.an;
let 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;
}
a8(a, b) {
super.a8(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);
}
}
}
an(a) {
super.an(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;
})();