igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
74 lines (73 loc) • 2.06 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 class ScatterSeries extends ScatterBase {
static { this.$t = markType(ScatterSeries, 'ScatterSeries', ScatterBase.$); }
bk() {
return new ScatterSeries();
}
get_ek() {
return true;
}
ct() {
return new ScatterSeriesView(this);
}
jv() {
return 0.7;
}
xp() {
if (this.xo == 0) {
return 2;
}
return super.xp();
}
rj(a) {
super.rj(a);
this.adz = a;
}
constructor() {
super();
this.ab = ScatterSeries.$;
this.aae = new ScatterFrame();
this.aag = new ScatterFrame();
this.aac = new ScatterFrame();
}
}
/**
* @hidden
*/
export class ScatterSeriesView extends ScatterBaseView {
static { this.$t = markType(ScatterSeriesView, 'ScatterSeriesView', ScatterBaseView.$); }
constructor(a) {
super(a);
this.dy = null;
this.dy = a;
}
a4() {
super.a4();
if (!this.t) {
this.ch.xy = Defaults.e;
}
}
an() {
let a = new Color();
a.colorString = "rgba(95,95,95,0.5)";
this.f.wn = a;
this.f.jx = 3;
this.f.jy = 2;
this.f.jz = 2;
this.f.hk = false;
}
}