UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

99 lines (98 loc) 3.1 kB
/* 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-angular-core"; import { List$1 } from "igniteui-angular-core"; import { ChartSelection } from "./ChartSelection"; import { AnchoredCategorySeriesView } from "./AnchoredCategorySeriesView"; import { Defaults } from "./Defaults"; import { Color } from "igniteui-angular-core"; /** * @hidden */ export let PointSeries = /*@__PURE__*/ (() => { class PointSeries extends HorizontalAnchoredCategorySeries { constructor() { super(); this.ab = PointSeries.$; } bk() { return new PointSeries(); } get_ek() { return true; } ct() { return new PointSeriesView(this); } rg(a) { super.rg(a); this.adi = a; } jt() { return 0.7; } xl() { if (this.xk == 0) { return 2; } return super.xl(); } g2(a, b) { let c = this.wv(this.w1(a), true, false); if (this.x1(a, b)) { return true; } return false; } rp(a, b, c, d) { super.rp(a, b, c, d); } qh(a, b, c) { this.aaz(a, b, c, this.zd, 0); } ak(a, b) { let c = new List$1(ChartSelection.$, 0); this.qh(a, c, b); return c.toArray(); } get useHighMarkerFidelity() { return this.aaa; } } PointSeries.$t = 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.xu = Defaults.e; } } an() { let a = new Color(); a.colorString = "rgba(95,95,95,0.5)"; this.f.wk = a; this.f.jv = 3; this.f.jw = 2; this.f.jx = 2; this.f.hi = false; } } PointSeriesView.$t = markType(PointSeriesView, 'PointSeriesView', AnchoredCategorySeriesView.$); return PointSeriesView; })();