highcharts
Version:
JavaScript charting framework
43 lines (42 loc) • 741 B
JavaScript
/* *
*
* (c) 2010-2026 Highsoft AS
* Author: Torstein Hønsi
*
* A commercial license may be required depending on use.
* See www.highcharts.com/license
*
*
* */
;
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;