UNPKG

igniteui-angular-charts

Version:

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

89 lines (88 loc) 2.91 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 { HorizontalStackedSeriesBase } from "./HorizontalStackedSeriesBase"; import { markType } from "igniteui-angular-core"; import { AxisRange } from "./AxisRange"; import { ChartSelection } from "./ChartSelection"; import { List$1 } from "igniteui-angular-core"; import { StackedSeriesView } from "./StackedSeriesView"; import { Defaults } from "./Defaults"; /** * @hidden */ export let StackedLineSeries = /*@__PURE__*/ (() => { class StackedLineSeries extends HorizontalStackedSeriesBase { constructor() { super(); this.ab = StackedLineSeries.$; } bk() { return new StackedLineSeries(); } get_fn() { return true; } ac() { super.ac(); this.r7(false); } ct() { return new StackedLineSeriesView(this); } rg(a) { super.rg(a); this.aco = a; } ay(a) { if (this.itemsSource == null) { return null; } if (a == this.xAxis) { return new AxisRange(0, this.dp.count - 1); } if (a == this.yAxis) { this.ab7(); return new AxisRange(this.aby, this.abx); } return null; } preferredCategoryMode(a) { return 0; } ak(a, b) { let c = new List$1(ChartSelection.$, 0); this.qh(a, c, b); return c.toArray(); } qh(a, b, c) { this.aaz(a, b, c, this.zd, 0); } get useHighMarkerFidelity() { return this.aaa; } } StackedLineSeries.$t = markType(StackedLineSeries, 'StackedLineSeries', HorizontalStackedSeriesBase.$); return StackedLineSeries; })(); /** * @hidden */ export let StackedLineSeriesView = /*@__PURE__*/ (() => { class StackedLineSeriesView extends StackedSeriesView { constructor(a) { super(a); } a4() { super.a4(); if (!this.t) { this.di.xu = Defaults.e; } } } StackedLineSeriesView.$t = markType(StackedLineSeriesView, 'StackedLineSeriesView', StackedSeriesView.$); return StackedLineSeriesView; })();