UNPKG

igniteui-react-charts

Version:

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

83 lines (82 loc) 2.85 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 { ScatterBase } from "./ScatterBase"; import { markType } from "igniteui-react-core"; import { ScatterFrame } from "./ScatterFrame"; import { ScatterBaseView } from "./ScatterBaseView"; import { Defaults } from "./Defaults"; import { Color } from "igniteui-react-core"; /** * @hidden */ var ScatterSeries = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ScatterSeries, _super); function ScatterSeries() { var _this = _super.call(this) || this; _this.ab = ScatterSeries.$; _this.y4 = new ScatterFrame(); _this.y6 = new ScatterFrame(); _this.y2 = new ScatterFrame(); return _this; } ScatterSeries.prototype.bk = function () { return new ScatterSeries(); }; ScatterSeries.prototype.get_ej = function () { return true; }; ScatterSeries.prototype.ct = function () { return new ScatterSeriesView(this); }; ScatterSeries.prototype.jl = function () { return 0.7; }; ScatterSeries.prototype.w3 = function () { if (this.w2 == 0) { return 2; } return _super.prototype.w3.call(this); }; ScatterSeries.prototype.q1 = function (a) { _super.prototype.q1.call(this, a); this.acp = a; }; ScatterSeries.$t = markType(ScatterSeries, 'ScatterSeries', ScatterBase.$); return ScatterSeries; }(ScatterBase)); export { ScatterSeries }; /** * @hidden */ var ScatterSeriesView = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ScatterSeriesView, _super); function ScatterSeriesView(a) { var _this = _super.call(this, a) || this; _this.dp = null; _this.dp = a; return _this; } ScatterSeriesView.prototype.ax = function () { _super.prototype.ax.call(this); if (!this.r) { this.b8.xc = Defaults.e; } }; ScatterSeriesView.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; }; ScatterSeriesView.$t = markType(ScatterSeriesView, 'ScatterSeriesView', ScatterBaseView.$); return ScatterSeriesView; }(ScatterBaseView)); export { ScatterSeriesView };