igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
99 lines (98 loc) • 3.02 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 { HorizontalAnchoredCategorySeries } from "./HorizontalAnchoredCategorySeries";
import { markType } from "igniteui-react-core";
import { List$1 } from "igniteui-react-core";
import { ChartSelection } from "./ChartSelection";
import { AnchoredCategorySeriesView } from "./AnchoredCategorySeriesView";
import { Defaults } from "./Defaults";
import { Color } from "igniteui-react-core";
/**
* @hidden
*/
export let PointSeries = /*@__PURE__*/ (() => {
class PointSeries extends HorizontalAnchoredCategorySeries {
bk() {
return new PointSeries();
}
get_ek() {
return true;
}
ct() {
return new PointSeriesView(this);
}
q3(a) {
super.q3(a);
this.ac3 = a;
}
constructor() {
super();
this.ab = PointSeries.$;
}
jm() {
return 0.7;
}
w6() {
if (this.w5 == 0) {
return 2;
}
return super.w6();
}
gx(a, b) {
let c = this.wh(this.wm(a), true, false);
if (this.xm(a, b)) {
return true;
}
return false;
}
rc(a, b, c, d) {
super.rc(a, b, c, d);
}
p6(a, b, c) {
this.aak(a, b, c, this.yy, 0);
}
ak(a, b) {
let c = new List$1(ChartSelection.$, 0);
this.p6(a, c, b);
return c.toArray();
}
get useHighMarkerFidelity() {
return this.zv;
}
}
PointSeries.$t = /*@__PURE__*/ markType(PointSeries, 'PointSeries', HorizontalAnchoredCategorySeries.$);
return PointSeries;
})();
/**
* @hidden
*/
export let PointSeriesView = /*@__PURE__*/ (() => {
class PointSeriesView extends AnchoredCategorySeriesView {
constructor(a) {
super(a);
this.dt = null;
this.dt = a;
}
a4() {
super.a4();
if (!this.t) {
this.ch.xf = Defaults.e;
}
}
an() {
let a = new Color();
a.colorString = "rgba(95,95,95,0.5)";
this.f.v6 = a;
this.f.jn = 3;
this.f.jo = 2;
this.f.jp = 2;
this.f.hd = false;
}
}
PointSeriesView.$t = /*@__PURE__*/ markType(PointSeriesView, 'PointSeriesView', AnchoredCategorySeriesView.$);
return PointSeriesView;
})();