igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
72 lines (71 loc) • 2.53 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 { StackedLineSeries } from "./StackedLineSeries";
import { IStacked100Series_$type } from "./IStacked100Series";
import { markType } from "igniteui-angular-core";
import { Stacked100DataPreparer } from "./Stacked100DataPreparer";
import { StackedLineSeriesView } from "./StackedLineSeriesView";
import { Defaults } from "./Defaults";
/**
* @hidden
*/
export let Stacked100LineSeries = /*@__PURE__*/ (() => {
class Stacked100LineSeries extends StackedLineSeries {
constructor() {
super();
this.ab = Stacked100LineSeries.$;
}
ct() {
return new Stacked100LineSeriesView(this);
}
rg(a) {
super.rg(a);
this.acp = a;
}
get_abq() {
return true;
}
ac() {
super.ac();
this.r7(false);
}
ab7() {
super.ab7();
Stacked100DataPreparer.a(this);
}
abw(a, b) {
let c = 0;
for (let d = 0; d < this.series.count; d++) {
c += this.series._inner[d].ak.item(b);
}
return (this.series._inner[a].ak.item(b) / c) * 100;
}
get useHighMarkerFidelity() {
return this.aaa;
}
}
Stacked100LineSeries.$t = markType(Stacked100LineSeries, 'Stacked100LineSeries', StackedLineSeries.$, [IStacked100Series_$type]);
return Stacked100LineSeries;
})();
/**
* @hidden
*/
export let Stacked100LineSeriesView = /*@__PURE__*/ (() => {
class Stacked100LineSeriesView extends StackedLineSeriesView {
constructor(a) {
super(a);
}
a4() {
super.a4();
if (!this.t) {
this.di.xu = Defaults.e;
}
}
}
Stacked100LineSeriesView.$t = markType(Stacked100LineSeriesView, 'Stacked100LineSeriesView', StackedLineSeriesView.$);
return Stacked100LineSeriesView;
})();