highcharts
Version:
JavaScript charting framework
37 lines (36 loc) • 612 B
JavaScript
/* *
*
* Wind barb series module
*
* (c) 2010-2026 Highsoft AS
* Author: Torstein Honsi
*
* A commercial license may be required depending on use.
* See www.highcharts.com/license
*
*
* */
import ColumnSeries from '../Column/ColumnSeries.js';
import U from '../../Core/Utilities.js';
const { isNumber } = U;
/* *
*
* Class
*
* */
class WindbarbPoint extends ColumnSeries.prototype.pointClass {
/* *
*
* Functions
*
* */
isValid() {
return isNumber(this.value) && this.value >= 0;
}
}
/* *
*
* Default Export
*
* */
export default WindbarbPoint;