igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
79 lines (78 loc) • 2.81 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 { PolarBase } from "./PolarBase";
import { markType } from "igniteui-react-core";
import { PolarBaseView } from "./PolarBaseView";
import { Defaults } from "./Defaults";
import { Color } from "igniteui-react-core";
/**
* @hidden
*/
var PolarScatterSeries = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(PolarScatterSeries, _super);
function PolarScatterSeries() {
var _this = _super.call(this) || this;
_this.ab = PolarScatterSeries.$;
return _this;
}
PolarScatterSeries.prototype.bk = function () {
return new PolarScatterSeries();
};
PolarScatterSeries.prototype.get_ek = function () {
return true;
};
PolarScatterSeries.prototype.ct = function () {
return new PolarScatterSeriesView(this);
};
PolarScatterSeries.prototype.q3 = function (a) {
_super.prototype.q3.call(this, a);
this.acl = a;
};
PolarScatterSeries.prototype.jm = function () {
return 0.7;
};
PolarScatterSeries.prototype.w6 = function () {
if (this.w5 == 0) {
return 2;
}
return _super.prototype.w6.call(this);
};
PolarScatterSeries.$t = markType(PolarScatterSeries, 'PolarScatterSeries', PolarBase.$);
return PolarScatterSeries;
}(PolarBase));
export { PolarScatterSeries };
/**
* @hidden
*/
var PolarScatterSeriesView = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(PolarScatterSeriesView, _super);
function PolarScatterSeriesView(a) {
var _this = _super.call(this, a) || this;
_this.dl = null;
_this.dl = a;
return _this;
}
PolarScatterSeriesView.prototype.a4 = function () {
_super.prototype.a4.call(this);
if (!this.t) {
this.dl.xf = Defaults.e;
}
};
PolarScatterSeriesView.prototype.an = function () {
var a = new Color();
a.colorString = "rgba(95,95,95,0.5)";
this.f.v6 = a;
this.f.jn = 3;
this.f.jo = 2;
this.f.jp = 2;
this.f.hd = false;
};
PolarScatterSeriesView.$t = markType(PolarScatterSeriesView, 'PolarScatterSeriesView', PolarBaseView.$);
return PolarScatterSeriesView;
}(PolarBaseView));
export { PolarScatterSeriesView };