package.es-modules.Series.Bullet.BulletPoint.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 ColumnSeries from '../Column/ColumnSeries.js';
/* *
*
* Class
*
* */
class BulletPoint extends ColumnSeries.prototype.pointClass {
/* *
*
* Functions
*
* */
/**
* Destroys target graphic.
* @private
*/
destroy() {
const series = this;
if (series.targetGraphic) {
series.targetGraphic = series.targetGraphic.destroy();
}
super.destroy.apply(series, arguments);
return;
}
}
/* *
*
* Default Export
*
* */
export default BulletPoint;