UNPKG

highcharts

Version:
42 lines (41 loc) 739 B
/* * * * (c) 2010-2025 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;