UNPKG

igniteui-react-charts

Version:

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

36 lines (35 loc) 1.58 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 { ScatterFrameBase$1 } from "./ScatterFrameBase$1"; import { Dictionary$2 } from "igniteui-react-core"; import { Base, typeCast, markType } from "igniteui-react-core"; import { OwnedPoint } from "./OwnedPoint"; /** * @hidden */ var ScatterFrame = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ScatterFrame, _super); function ScatterFrame() { var _this = _super.call(this, ScatterFrame.$) || this; _this.v = null; _this.v = new Dictionary$2(Base.$, OwnedPoint.$, 0); return _this; } ScatterFrame.prototype.s = function (a, b, c) { _super.prototype.s.call(this, a, b, c); var d = typeCast(ScatterFrame.$, b); var e = typeCast(ScatterFrame.$, c); if (d == null || e == null) { return; } this.f.f(this.v, a, d.v, e.v, d, e); }; ScatterFrame.$t = markType(ScatterFrame, 'ScatterFrame', ScatterFrameBase$1.$.specialize(-1)).initSelfReferences(); return ScatterFrame; }(ScatterFrameBase$1)); export { ScatterFrame };