igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
70 lines (69 loc) • 1.92 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 { PolarBase } from "./PolarBase";
import { markType } from "igniteui-angular-core";
import { PolarBaseView } from "./PolarBaseView";
import { Defaults } from "./Defaults";
import { Color } from "igniteui-angular-core";
/**
* @hidden
*/
export class PolarScatterSeries extends PolarBase {
static { this.$t = markType(PolarScatterSeries, 'PolarScatterSeries', PolarBase.$); }
bk() {
return new PolarScatterSeries();
}
get_ek() {
return true;
}
ct() {
return new PolarScatterSeriesView(this);
}
rj(a) {
super.rj(a);
this.ads = a;
}
jv() {
return 0.7;
}
xp() {
if (this.xo == 0) {
return 2;
}
return super.xp();
}
constructor() {
super();
this.ab = PolarScatterSeries.$;
}
}
/**
* @hidden
*/
export class PolarScatterSeriesView extends PolarBaseView {
static { this.$t = markType(PolarScatterSeriesView, 'PolarScatterSeriesView', PolarBaseView.$); }
constructor(a) {
super(a);
this.dl = null;
this.dl = a;
}
a4() {
super.a4();
if (!this.t) {
this.dl.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;
}
}