igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
80 lines (79 loc) • 2.5 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-angular-core";
import { ScatterFrame } from "./ScatterFrame";
import { ScatterBaseView } from "./ScatterBaseView";
import { Defaults } from "./Defaults";
import { Color } from "igniteui-angular-core";
/**
* @hidden
*/
export let ScatterSeries = /*@__PURE__*/ (() => {
class ScatterSeries extends ScatterBase {
constructor() {
super();
this.ab = ScatterSeries.$;
this.y1 = new ScatterFrame();
this.y3 = new ScatterFrame();
this.yz = new ScatterFrame();
}
bj() {
return new ScatterSeries();
}
get_ei() {
return true;
}
cs() {
return new ScatterSeriesView(this);
}
jk() {
return 0.7;
}
w0() {
if (this.wz == 0) {
return 2;
}
return super.w0();
}
q0(a) {
super.q0(a);
this.acm = a;
}
}
ScatterSeries.$t = markType(ScatterSeries, 'ScatterSeries', ScatterBase.$);
return ScatterSeries;
})();
/**
* @hidden
*/
export let ScatterSeriesView = /*@__PURE__*/ (() => {
class ScatterSeriesView extends ScatterBaseView {
constructor(a) {
super(a);
this.dk = null;
this.dk = a;
}
au() {
super.au();
if (!this.q) {
this.b4.w9 = Defaults.e;
}
}
af() {
let a = new Color();
a.colorString = "rgba(95,95,95,0.5)";
this.e.v0 = a;
this.e.jl = 3;
this.e.jm = 2;
this.e.jn = 2;
this.e.hb = false;
}
}
ScatterSeriesView.$t = markType(ScatterSeriesView, 'ScatterSeriesView', ScatterBaseView.$);
return ScatterSeriesView;
})();