/* * * * (c) 2010-2021 Torstein Honsi * * License: www.highcharts.com/license * * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!! * * */ 'use strict'; import Point from '../../Core/Series/Point.js'; import SeriesRegistry from '../../Core/Series/SeriesRegistry.js'; const { seriesTypes: { scatter: { prototype: { pointClass: ScatterPoint } } } } = SeriesRegistry; import U from '../../Core/Utilities.js'; const { extend } = U; /* * * * Class * * */ class BubblePoint extends ScatterPoint { constructor() { /* * * * Properties * * */ super(...arguments); this.options = void 0; this.series = void 0; /* eslint-enable valid-jsdoc */ } /* * * * Functions * * */ /* eslint-disable valid-jsdoc */ /** * @private */ haloPath(size) { return Point.prototype.haloPath.call(this, // #6067 size === 0 ? 0 : (this.marker ? this.marker.radius || 0 : 0) + size); } } /* * * * Class Prototype * * */ extend(BubblePoint.prototype, { ttBelow: false }); /* * * * Default Export * * */ export default BubblePoint;