package.es-modules.Series.Flags.FlagsPoint.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!
/* *
*
* (c) 2010-2024 Torstein Honsi
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* */
'use strict';
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 FlagsPoint extends ColumnPoint {
constructor() {
/* *
*
* Properties
*
* */
super(...arguments);
this.ttBelow = false;
}
/* *
*
* Functions
*
* */
/**
* @private
*/
isValid() {
// #9233 - Prevent from treating flags as null points (even if
// they have no y values defined).
return isNumber(this.y) || typeof this.y === 'undefined';
}
/**
* @private
*/
hasNewShapeType() {
const shape = this.options.shape || this.series.options.shape;
return this.graphic && shape && shape !== this.graphic.symbolKey;
}
}
/* *
*
* Default Export
*
* */
export default FlagsPoint;