UNPKG

highcharts

Version:
30 lines (29 loc) 689 B
/* * * * (c) 2010-2026 Highsoft AS * Author: Torstein Hønsi * * Integration of this software requires a license. * - For commercial use, see www.highcharts.com/license * - For non-commercial, see www.highcharts.com/license-eula * * * */ 'use strict'; import SeriesRegistry from '../../Core/Series/SeriesRegistry.js'; const { candlestick: { prototype: { pointClass: CandlestickPoint } }, hlc: { prototype: { // eslint-disable-next-line @typescript-eslint/no-unused-vars pointClass: HLCPoint } } } = SeriesRegistry.seriesTypes; /* * * * Class * * */ class HeikinAshiPoint extends CandlestickPoint { } /* * * * Default Export * * */ export default HeikinAshiPoint;