highcharts
Version:
JavaScript charting framework
39 lines (38 loc) • 816 B
JavaScript
/* *
*
* (c) 2010-2026 Highsoft AS
* Author: Torstein Hønsi
*
* A commercial license may be required depending on use.
* See www.highcharts.com/license
*
*
* */
;
import SeriesRegistry from '../../Core/Series/SeriesRegistry.js';
const { seriesTypes: { column: { prototype: { pointClass: { prototype: columnProto } } }, arearange: { prototype: { pointClass: AreaRangePoint } } } } = SeriesRegistry;
import { extend, isNumber } from '../../Shared/Utilities.js';
/* *
*
* Class
*
* */
class ColumnRangePoint extends AreaRangePoint {
/* *
*
* Functions
*
* */
isValid() {
return isNumber(this.low);
}
}
extend(ColumnRangePoint.prototype, {
setState: columnProto.setState
});
/* *
*
* Default Export
*
* */
export default ColumnRangePoint;