highcharts
Version:
JavaScript charting framework
35 lines (34 loc) • 625 B
JavaScript
/* *
*
* (c) 2010-2026 Highsoft AS
* Author: Torstein Hønsi
*
* Integration of this software requires a license.
* - For commercial use, see www.highcharts.com/license
* - For non-commercial, see www.highcharts.com/license-eula
*
*
* */
;
/* *
*
* Imports
*
* */
import SeriesRegistry from '../../Core/Series/SeriesRegistry.js';
const { scatter: { prototype: { pointClass: ScatterPoint } } } = SeriesRegistry.seriesTypes;
/* *
*
* Class
*
* */
/** @internal */
class ContourPoint extends ScatterPoint {
}
/* *
*
* Default Export
*
* */
/** @internal */
export default ContourPoint;