igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
32 lines (31 loc) • 1.42 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 { IndicatorCalculationStrategy } from "./IndicatorCalculationStrategy";
import { String_$type, fromEnum, markType } from "igniteui-react-core";
import { List$1 } from "igniteui-react-core";
/**
* @hidden
*/
export let TypicalPriceIndicatorStrategy = /*@__PURE__*/ (() => {
class TypicalPriceIndicatorStrategy extends IndicatorCalculationStrategy {
b(a, b) {
let c = new List$1(String_$type, 0);
c.o(a.typicalColumn.basedOn);
return c;
}
a(a, b) {
let c = 0;
for (let d of fromEnum(a.typicalColumn)) {
a.indicatorColumn.item(c, d);
c++;
}
return true;
}
}
TypicalPriceIndicatorStrategy.$t = /*@__PURE__*/ markType(TypicalPriceIndicatorStrategy, 'TypicalPriceIndicatorStrategy', IndicatorCalculationStrategy.$);
return TypicalPriceIndicatorStrategy;
})();