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_ek() {
return true;
}
ct() {
return new ScatterSeriesView(this);
}
jo() {
return 0.7;
}
xc() {
if (this.xb == 0) {
return 2;
}
return super.xc();
}
q8(a) {
super.q8(a);
this.acy = a;
}
constructor() {
super();
this.ab = ScatterSeries.$;
this.zd = new ScatterFrame();
this.zf = new ScatterFrame();
this.zb = 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.dy = null;
this.dy = a;
}
a4() {
super.a4();
if (!this.t) {
this.ch.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;
}
}
ScatterSeriesView.$t = /*@__PURE__*/ markType(ScatterSeriesView, 'ScatterSeriesView', ScatterBaseView.$);
return ScatterSeriesView;
})();