/* * * * (c) 2019-2021 Torstein Honsi * * Item series type for Highcharts * * License: www.highcharts.com/license * * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!! * * */ 'use strict'; import SeriesRegistry from '../../Core/Series/SeriesRegistry.js'; const { series: { prototype: { pointClass: Point } }, seriesTypes: { pie: { prototype: { pointClass: PiePoint } } } } = SeriesRegistry; import U from '../../Core/Utilities.js'; const { extend } = U; /* * * * Class * * */ class ItemPoint extends PiePoint { constructor() { /* * * * Properties * * */ super(...arguments); this.options = void 0; this.series = void 0; } } extend(ItemPoint.prototype, { haloPath: Point.prototype.haloPath }); /* * * * Default Export * * */ export default ItemPoint;