UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

79 lines (78 loc) 2.81 kB
/* 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.rh = function (a) { _super.prototype.rh.call(this, a); this.ac1 = a; }; PolarScatterSeries.prototype.jt = function () { return 0.7; }; PolarScatterSeries.prototype.xm = function () { if (this.xl == 0) { return 2; } return _super.prototype.xm.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.xv = Defaults.e; } }; PolarScatterSeriesView.prototype.an = function () { var a = new Color(); a.colorString = "rgba(95,95,95,0.5)"; this.f.wl = a; this.f.jv = 3; this.f.jw = 2; this.f.jx = 2; this.f.hi = false; }; PolarScatterSeriesView.$t = markType(PolarScatterSeriesView, 'PolarScatterSeriesView', PolarBaseView.$); return PolarScatterSeriesView; }(PolarBaseView)); export { PolarScatterSeriesView };