igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
131 lines (130 loc) • 4.67 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 { __extends } from "tslib";
import { PolarLineSeriesBase } from "./PolarLineSeriesBase";
import { UnknownValuePlotting_$type } from "igniteui-react-core";
import { DependencyProperty } from "igniteui-react-core";
import { runOn, enumGetBox, markType, markDep } from "igniteui-react-core";
import { Path } from "igniteui-react-core";
import { PropertyMetadata } from "igniteui-react-core";
import { PolarLineSeriesBaseView } from "./PolarLineSeriesBaseView";
import { Defaults } from "./Defaults";
/**
* @hidden
*/
var PolarLineSeries = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(PolarLineSeries, _super);
function PolarLineSeries() {
var _this = _super.call(this) || this;
_this.ab = PolarLineSeries.$;
return _this;
}
PolarLineSeries.prototype.bk = function () {
return new PolarLineSeries();
};
PolarLineSeries.prototype.get_fl = function () {
return true;
};
PolarLineSeries.prototype.ct = function () {
return new PolarLineSeriesView(this);
};
PolarLineSeries.prototype.q8 = function (a) {
_super.prototype.q8.call(this, a);
this.ac5 = a;
};
PolarLineSeries.prototype.ac3 = function (a) {
var b = a;
b.dn();
};
PolarLineSeries.prototype.ac4 = function (a, b) {
var c = b;
c.dp(a.n, this.ie);
this.zg.az(this, this.z8(), runOn(this, this.yy));
var d = false;
var e = this.zg.b;
if (e != null) {
d = true;
}
if (d) {
this.abn(-1, this.zu.count, b.t);
}
this.zg.ad(b.dr, true, false, true, false);
};
PolarLineSeries.prototype.acv = function () {
return this.ac6;
};
PolarLineSeries.prototype.rh = function (a, b, c, d) {
_super.prototype.rh.call(this, a, b, c, d);
switch (b) {
case PolarLineSeries.$$p[0]:
this.rz(false);
this.qs();
break;
}
};
PolarLineSeries.$t = markType(PolarLineSeries, 'PolarLineSeries', PolarLineSeriesBase.$);
PolarLineSeries.$$p = markDep(DependencyProperty, PropertyMetadata, PolarLineSeries, 'raisePropertyChanged', ['UnknownValuePlotting:ac6:ac8', [UnknownValuePlotting_$type, enumGetBox(UnknownValuePlotting_$type, 1)]]);
return PolarLineSeries;
}(PolarLineSeriesBase));
export { PolarLineSeries };
/**
* @hidden
*/
var PolarLineSeriesView = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(PolarLineSeriesView, _super);
function PolarLineSeriesView(a) {
var _this = _super.call(this, a) || this;
_this.dm = null;
_this.dr = new Path();
_this.dq = new Path();
_this.dm = a;
return _this;
}
PolarLineSeriesView.prototype.a4 = function () {
_super.prototype.a4.call(this);
if (!this.t) {
this.ch.xl = Defaults.e;
}
};
PolarLineSeriesView.prototype.dn = function () {
this.dr.an = null;
this.dq.an = null;
this.a2();
};
PolarLineSeriesView.prototype.dp = function (a, b) {
this.dm.acs.d(this.dr, a, b);
this.a2();
};
PolarLineSeriesView.prototype.bp = function () {
_super.prototype.bp.call(this);
};
PolarLineSeriesView.prototype.bq = function () {
_super.prototype.bq.call(this);
var a = this.b3();
this.dq.an = this.dr.an;
this.dq._stroke = a;
this.dq.ad = this.f.ig + 3;
};
PolarLineSeriesView.prototype.bj = function (a, b) {
_super.prototype.bj.call(this, a, b);
if (a.d) {
if (b) {
a.t(this.dq);
}
else {
a.t(this.dr);
}
}
};
PolarLineSeriesView.prototype.ax = function (a) {
_super.prototype.ax.call(this, a);
this.f.bc.exportPathData(a, this.dr, "polarShape", ["Main"]);
};
PolarLineSeriesView.$t = markType(PolarLineSeriesView, 'PolarLineSeriesView', PolarLineSeriesBaseView.$);
return PolarLineSeriesView;
}(PolarLineSeriesBaseView));
export { PolarLineSeriesView };