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.zd = new ScatterFrame(); _this.zf = new ScatterFrame(); _this.zb = new ScatterFrame(); return _this; } ScatterSeries.prototype.bk = function () { return new ScatterSeries(); }; ScatterSeries.prototype.get_ek = function () { return true; }; ScatterSeries.prototype.ct = function () { return new ScatterSeriesView(this); }; ScatterSeries.prototype.jo = function () { return 0.7; }; ScatterSeries.prototype.xc = function () { if (this.xb == 0) { return 2; } return _super.prototype.xc.call(this); }; ScatterSeries.prototype.q8 = function (a) { _super.prototype.q8.call(this, a); this.acy = 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.dy = null; _this.dy = a; return _this; } ScatterSeriesView.prototype.a4 = function () { _super.prototype.a4.call(this); if (!this.t) { this.ch.xl = Defaults.e; } }; ScatterSeriesView.prototype.an = function () { var a = new Color(); a.colorString = "rgba(95,95,95,0.5)"; this.f.wc = a; this.f.jq = 3; this.f.jr = 2; this.f.js = 2; this.f.hd = false; }; ScatterSeriesView.$t = markType(ScatterSeriesView, 'ScatterSeriesView', ScatterBaseView.$); return ScatterSeriesView; }(ScatterBaseView)); export { ScatterSeriesView };