igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
165 lines (164 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 { PolarLineSeriesBase } from "./PolarLineSeriesBase";
import { UnknownValuePlotting_$type } from "igniteui-react-core";
import { DependencyProperty } from "igniteui-react-core";
import { runOn, enumGetBox, markType, markDep, Point_$type } from "igniteui-react-core";
import { Path } from "igniteui-react-core";
import { List$1 } from "igniteui-react-core";
import { PropertyMetadata } from "igniteui-react-core";
import { PolarLineSeriesBaseView } from "./PolarLineSeriesBaseView";
import { Defaults } from "./Defaults";
import { Color } from "igniteui-react-core";
/**
* @hidden
*/
export let PolarAreaSeries = /*@__PURE__*/ (() => {
class PolarAreaSeries extends PolarLineSeriesBase {
bk() {
return new PolarAreaSeries();
}
get_ew() {
return true;
}
ct() {
return new PolarAreaSeriesView(this);
}
z3() {
return false;
}
q3(a) {
super.q3(a);
this.acz = a;
}
constructor() {
super();
this.ab = PolarAreaSeries.$;
}
acx(a) {
let b = a;
b.dn();
}
acy(a, b) {
if (a.n.count > 0) {
let c = a.n._inner[0];
let d = a.n._inner[a.n.count - 1];
let e = c.x == d.x && c.y == d.y;
if (!e) {
a.n.add(a.n._inner[0]);
}
}
let f = b;
f.dp(a.n, this.ie);
this.za.az(this, this.z2(), runOn(this, this.ys));
let g = false;
let h = this.za.b;
if (h != null) {
g = true;
}
if (g) {
this.abh(-1, this.zo.count, b.t);
}
let i = f.dv;
let j = f.du;
this.za.ad(i, true, false, true, true);
this.za.ad(j, false, true, false, false);
j._opacity = this.za.j * this.ia;
}
get_acu() {
return true;
}
acp() {
return this.ac0;
}
}
PolarAreaSeries.$t = /*@__PURE__*/ markType(PolarAreaSeries, 'PolarAreaSeries', PolarLineSeriesBase.$);
PolarAreaSeries.$$p = /*@__PURE__*/ markDep(DependencyProperty, PropertyMetadata, PolarAreaSeries, 'raisePropertyChanged', ['UnknownValuePlotting:ac0:ac2', [UnknownValuePlotting_$type, /*@__PURE__*/ enumGetBox(UnknownValuePlotting_$type, 1)]]);
return PolarAreaSeries;
})();
/**
* @hidden
*/
export let PolarAreaSeriesView = /*@__PURE__*/ (() => {
class PolarAreaSeriesView extends PolarLineSeriesBaseView {
constructor(a) {
super(a);
this.dm = null;
this.dt = new Path();
this.ds = new Path();
this.dr = new Path();
this.dq = new Path();
this.dm = a;
}
a4() {
super.a4();
if (!this.t) {
this.dm.xf = Defaults.e;
}
}
get du() {
return this.ds;
}
get dv() {
return this.dt;
}
dn() {
this.ds.an = null;
this.dt.an = null;
this.dq.an = null;
this.dr.an = null;
this.a2();
}
dp(a, b) {
let c = new List$1(Point_$type, 1, a);
this.dm.acm.d(this.dt, c, b);
this.dm.acm.d(this.ds, c, b);
this.a2();
}
bp() {
super.bp();
}
bq() {
super.bq();
let a = this.b3();
this.dr.an = this.dt.an;
this.dq.an = this.ds.an;
this.dr._stroke = a;
this.dr.ad = this.f.ig + 3;
this.dq._fill = a;
this.dq._opacity = 1;
}
bj(a, b) {
super.bj(a, b);
if (a.d) {
if (b) {
a.t(this.dq);
a.t(this.dr);
}
else {
a.t(this.ds);
a.t(this.dt);
}
}
}
ax(a) {
super.ax(a);
this.f.bc.exportPathData(a, this.dt, "polarShape", ["Main"]);
this.f.bc.exportPathData(a, this.ds, "fillShape", ["Fill"]);
}
an() {
let a = new Color();
a.colorString = "rgba(95,95,95,0.5)";
this.f.v6 = a;
this.f.jn = 5;
this.f.jo = 5;
this.f.jp = 5;
}
}
PolarAreaSeriesView.$t = /*@__PURE__*/ markType(PolarAreaSeriesView, 'PolarAreaSeriesView', PolarLineSeriesBaseView.$);
return PolarAreaSeriesView;
})();