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
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 { 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.$;
}
bj() {
return new StackedLineSeries();
}
get_fj() {
return true;
}
ac() {
super.ac();
this.rq(false);
}
cs() {
return new StackedLineSeriesView(this);
}
q0(a) {
super.q0(a);
this.ab1 = a;
}
ay(a) {
if (this.itemsSource == null) {
return null;
}
if (a == this.xAxis) {
return new AxisRange(0, this.dn.count - 1);
}
if (a == this.yAxis) {
this.abk();
return new AxisRange(this.abb, this.aba);
}
return null;
}
preferredCategoryMode(a) {
return 0;
}
ak(a, b) {
let c = new List$1(ChartSelection.$, 0);
this.p3(a, c, b);
return c.toArray();
}
p3(a, b, c) {
this.aab(a, b, c, this.ys, 0);
}
get useHighMarkerFidelity() {
return this.zp;
}
}
StackedLineSeries.$t = markType(StackedLineSeries, 'StackedLineSeries', HorizontalStackedSeriesBase.$);
return StackedLineSeries;
})();
/**
* @hidden
*/
export let StackedLineSeriesView = /*@__PURE__*/ (() => {
class StackedLineSeriesView extends StackedSeriesView {
constructor(a) {
super(a);
}
au() {
super.au();
if (!this.q) {
this.c5.w9 = Defaults.e;
}
}
}
StackedLineSeriesView.$t = markType(StackedLineSeriesView, 'StackedLineSeriesView', StackedSeriesView.$);
return StackedLineSeriesView;
})();