highcharts
Version:
JavaScript charting framework
38 lines (37 loc) • 706 B
JavaScript
/* *
*
* Highcharts variwide module
*
* (c) 2010-2025 Torstein Honsi
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* */
;
import SeriesRegistry from '../../Core/Series/SeriesRegistry.js';
const { column: { prototype: { pointClass: ColumnPoint } } } = SeriesRegistry.seriesTypes;
import U from '../../Core/Utilities.js';
const { isNumber } = U;
/* *
*
* Class
*
* */
class VariwidePoint extends ColumnPoint {
/* *
*
* Functions
*
* */
isValid() {
return isNumber(this.y) && isNumber(this.z);
}
}
/* *
*
* Default Export
*
* */
export default VariwidePoint;