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_ej = function () { return true; }; PolarScatterSeries.prototype.ct = function () { return new PolarScatterSeriesView(this); }; PolarScatterSeries.prototype.q1 = function (a) { _super.prototype.q1.call(this, a); this.aci = a; }; PolarScatterSeries.prototype.jl = function () { return 0.7; }; PolarScatterSeries.prototype.w3 = function () { if (this.w2 == 0) { return 2; } return _super.prototype.w3.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.dc = null; _this.dc = a; return _this; } PolarScatterSeriesView.prototype.ax = function () { _super.prototype.ax.call(this); if (!this.r) { this.dc.xc = Defaults.e; } }; PolarScatterSeriesView.prototype.ai = function () { var a = new Color(); a.colorString = "rgba(95,95,95,0.5)"; this.f.v3 = a; this.f.jm = 3; this.f.jn = 2; this.f.jo = 2; this.f.hc = false; }; PolarScatterSeriesView.$t = markType(PolarScatterSeriesView, 'PolarScatterSeriesView', PolarBaseView.$); return PolarScatterSeriesView; }(PolarBaseView)); export { PolarScatterSeriesView };