UNPKG

igniteui-react-charts

Version:

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

76 lines (75 loc) 2.33 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 { PolarBase } from "./PolarBase"; import { markType } from "igniteui-react-core"; import { PolarBaseView } from "./PolarBaseView"; import { Defaults } from "./Defaults"; import { Color } from "igniteui-react-core"; /** * @hidden */ export let PolarScatterSeries = /*@__PURE__*/ (() => { class PolarScatterSeries extends PolarBase { bk() { return new PolarScatterSeries(); } get_ek() { return true; } ct() { return new PolarScatterSeriesView(this); } q8(a) { super.q8(a); this.acr = a; } jo() { return 0.7; } xc() { if (this.xb == 0) { return 2; } return super.xc(); } constructor() { super(); this.ab = PolarScatterSeries.$; } } PolarScatterSeries.$t = /*@__PURE__*/ markType(PolarScatterSeries, 'PolarScatterSeries', PolarBase.$); return PolarScatterSeries; })(); /** * @hidden */ export let PolarScatterSeriesView = /*@__PURE__*/ (() => { class PolarScatterSeriesView extends PolarBaseView { constructor(a) { super(a); this.dl = null; this.dl = a; } a4() { super.a4(); if (!this.t) { this.dl.xl = Defaults.e; } } an() { let a = new Color(); a.colorString = "rgba(95,95,95,0.5)"; this.f.wc = a; this.f.jq = 3; this.f.jr = 2; this.f.js = 2; this.f.hd = false; } } PolarScatterSeriesView.$t = /*@__PURE__*/ markType(PolarScatterSeriesView, 'PolarScatterSeriesView', PolarBaseView.$); return PolarScatterSeriesView; })();