highcharts
Version:
JavaScript charting framework
27 lines (26 loc) • 469 B
JavaScript
/* *
*
* (c) 2010-2026 Highsoft AS
* Author: Paweł Lysy
*
* A commercial license may be required depending on use.
* See www.highcharts.com/license
*
*
* */
;
import SeriesRegistry from '../../Core/Series/SeriesRegistry.js';
const { column: { prototype: { pointClass: ColumnPoint } } } = SeriesRegistry.seriesTypes;
/* *
*
* Class
*
* */
class HLCPoint extends ColumnPoint {
}
/* *
*
* Default Export
*
* */
export default HLCPoint;