highcharts
Version:
JavaScript charting framework
33 lines (32 loc) • 690 B
JavaScript
/* *
*
* (c) 2019-2025 Torstein Honsi
*
* Item series type for Highcharts
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* */
;
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 {
}
extend(ItemPoint.prototype, {
haloPath: Point.prototype.haloPath
});
/* *
*
* Default Export
*
* */
export default ItemPoint;