UNPKG

igniteui-react-charts

Version:

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

73 lines (72 loc) 2.63 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 { ScatterBaseView } from "./ScatterBaseView"; import { Path } from "igniteui-react-core"; import { Defaults } from "./Defaults"; import { markType } from "igniteui-react-core"; import { Color } from "igniteui-react-core"; /** * @hidden */ var ScatterLineSeriesView = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ScatterLineSeriesView, _super); function ScatterLineSeriesView(a) { var _this = _super.call(this, a) || this; _this.dz = new Path(); _this.dy = new Path(); return _this; } ScatterLineSeriesView.prototype.a4 = function () { _super.prototype.a4.call(this); if (!this.t) { this.ch.xl = Defaults.e; } }; ScatterLineSeriesView.prototype.bp = function () { _super.prototype.bp.call(this); }; ScatterLineSeriesView.prototype.bq = function () { _super.prototype.bq.call(this); var a = this.b3(); this.dy.an = this.dz.an; this.dy._stroke = a; this.dy.ad = this.f.ig + 3; }; ScatterLineSeriesView.prototype.bj = function (a, b) { _super.prototype.bj.call(this, a, b); if (a.d) { if (b) { a.t(this.dy); } else { a.t(this.dz); } } }; ScatterLineSeriesView.prototype.dm = function (a) { _super.prototype.dm.call(this, a); this.dz.an = null; this.dy.an = null; }; ScatterLineSeriesView.prototype.ax = function (a) { _super.prototype.ax.call(this, a); this.f.bc.exportPathData(a, this.dz, "shape", ["Main"]); }; ScatterLineSeriesView.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 = 1; this.f.js = 4; this.f.hd = false; }; ScatterLineSeriesView.$t = markType(ScatterLineSeriesView, 'ScatterLineSeriesView', ScatterBaseView.$); return ScatterLineSeriesView; }(ScatterBaseView)); export { ScatterLineSeriesView };