igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
80 lines (79 loc) • 2.45 kB
JavaScript
/*
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-react-core";
import { ScatterFrame } from "./ScatterFrame";
import { ScatterBaseView } from "./ScatterBaseView";
import { Defaults } from "./Defaults";
import { Color } from "igniteui-react-core";
/**
* @hidden
*/
export let ScatterSeries = /*@__PURE__*/ (() => {
class ScatterSeries extends ScatterBase {
bk() {
return new ScatterSeries();
}
get_ej() {
return true;
}
ct() {
return new ScatterSeriesView(this);
}
jl() {
return 0.7;
}
w3() {
if (this.w2 == 0) {
return 2;
}
return super.w3();
}
q1(a) {
super.q1(a);
this.acp = a;
}
constructor() {
super();
this.ab = ScatterSeries.$;
this.y4 = new ScatterFrame();
this.y6 = new ScatterFrame();
this.y2 = new ScatterFrame();
}
}
ScatterSeries.$t = /*@__PURE__*/ markType(ScatterSeries, 'ScatterSeries', ScatterBase.$);
return ScatterSeries;
})();
/**
* @hidden
*/
export let ScatterSeriesView = /*@__PURE__*/ (() => {
class ScatterSeriesView extends ScatterBaseView {
constructor(a) {
super(a);
this.dp = null;
this.dp = a;
}
ax() {
super.ax();
if (!this.r) {
this.b8.xc = Defaults.e;
}
}
ai() {
let a = new Color();
a.colorString = "rgba(95,95,95,0.5)";
this.f.v3 = a;
this.f.jm = 3;
this.f.jn = 2;
this.f.jo = 2;
this.f.hc = false;
}
}
ScatterSeriesView.$t = /*@__PURE__*/ markType(ScatterSeriesView, 'ScatterSeriesView', ScatterBaseView.$);
return ScatterSeriesView;
})();