package.es-modules.Series.Windbarb.WindbarbPoint.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of highcharts Show documentation
Show all versions of highcharts Show documentation
JavaScript charting framework
The newest version!
/* *
*
* Wind barb series module
*
* (c) 2010-2024 Torstein Honsi
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* */
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;