UNPKG

igniteui-angular-charts

Version:

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

80 lines (79 loc) 2.5 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 { ScatterBase } from "./ScatterBase"; import { markType } from "igniteui-angular-core"; import { ScatterFrame } from "./ScatterFrame"; import { ScatterBaseView } from "./ScatterBaseView"; import { Defaults } from "./Defaults"; import { Color } from "igniteui-angular-core"; /** * @hidden */ export let ScatterSeries = /*@__PURE__*/ (() => { class ScatterSeries extends ScatterBase { constructor() { super(); this.ab = ScatterSeries.$; this.zm = new ScatterFrame(); this.zo = new ScatterFrame(); this.zk = new ScatterFrame(); } bk() { return new ScatterSeries(); } get_ek() { return true; } ct() { return new ScatterSeriesView(this); } jt() { return 0.7; } xl() { if (this.xk == 0) { return 2; } return super.xl(); } rg(a) { super.rg(a); this.ac7 = a; } } ScatterSeries.$t = markType(ScatterSeries, 'ScatterSeries', ScatterBase.$); return ScatterSeries; })(); /** * @hidden */ export let ScatterSeriesView = /*@__PURE__*/ (() => { class ScatterSeriesView extends ScatterBaseView { constructor(a) { super(a); this.dy = null; this.dy = a; } a4() { super.a4(); if (!this.t) { this.ch.xu = Defaults.e; } } an() { let a = new Color(); a.colorString = "rgba(95,95,95,0.5)"; this.f.wk = a; this.f.jv = 3; this.f.jw = 2; this.f.jx = 2; this.f.hi = false; } } ScatterSeriesView.$t = markType(ScatterSeriesView, 'ScatterSeriesView', ScatterBaseView.$); return ScatterSeriesView; })();