UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

73 lines (72 loc) 2.71 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-angular-core"; import { Defaults } from "./Defaults"; import { markType } from "igniteui-angular-core"; import { Color } from "igniteui-angular-core"; /** * @hidden */ var ScatterLineSeriesView = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ScatterLineSeriesView, _super); function ScatterLineSeriesView(a) { var _this = _super.call(this, a) || this; _this.dl = new Path(); _this.dk = new Path(); return _this; } ScatterLineSeriesView.prototype.au = function () { _super.prototype.au.call(this); if (!this.q) { this.b4.w9 = Defaults.e; } }; ScatterLineSeriesView.prototype.bd = function () { _super.prototype.bd.call(this); }; ScatterLineSeriesView.prototype.be = function () { _super.prototype.be.call(this); var a = this.br(); this.dk.an = this.dl.an; this.dk._stroke = a; this.dk.ad = this.e.id + 3; }; ScatterLineSeriesView.prototype.a8 = function (a, b) { _super.prototype.a8.call(this, a, b); if (a.d) { if (b) { a.t(this.dk); } else { a.t(this.dl); } } }; ScatterLineSeriesView.prototype.c9 = function (a) { _super.prototype.c9.call(this, a); this.dl.an = null; this.dk.an = null; }; ScatterLineSeriesView.prototype.an = function (a) { _super.prototype.an.call(this, a); this.e.bc.exportPathData(a, this.dl, "shape", ["Main"]); }; ScatterLineSeriesView.prototype.af = function () { var a = new Color(); a.colorString = "rgba(95,95,95,0.5)"; this.e.v0 = a; this.e.jl = 3; this.e.jm = 1; this.e.jn = 4; this.e.hb = false; }; ScatterLineSeriesView.$t = markType(ScatterLineSeriesView, 'ScatterLineSeriesView', ScatterBaseView.$); return ScatterLineSeriesView; }(ScatterBaseView)); export { ScatterLineSeriesView };