UNPKG

igniteui-angular-charts

Version:

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

34 lines (33 loc) 1.47 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 { ScatterFrameBase$1 } from "./ScatterFrameBase$1"; import { Dictionary$2 } from "igniteui-angular-core"; import { Base, typeCast, markType } from "igniteui-angular-core"; import { OwnedPoint } from "./OwnedPoint"; /** * @hidden */ export let ScatterFrame = /*@__PURE__*/ (() => { class ScatterFrame extends ScatterFrameBase$1 { constructor() { super(ScatterFrame.$); this.y = null; this.y = new Dictionary$2(Base.$, OwnedPoint.$, 0); } v(a, b, c) { super.v(a, b, c); let d = typeCast(ScatterFrame.$, b); let e = typeCast(ScatterFrame.$, c); if (d == null || e == null) { return; } this.i.f(this.y, a, d.y, e.y, d, e); } } ScatterFrame.$t = markType(ScatterFrame, 'ScatterFrame', ScatterFrameBase$1.$.specialize(-1)).initSelfReferences(); return ScatterFrame; })();