highcharts
Version:
JavaScript charting framework
32 lines (31 loc) • 513 B
JavaScript
/* *
*
* (c) 2010-2026 Highsoft AS
* Author: Torstein Hønsi
*
* A commercial license may be required depending on use.
* See www.highcharts.com/license
*
*
* */
;
/* *
*
* Imports
*
* */
import SeriesRegistry from '../../Core/Series/SeriesRegistry.js';
const { scatter: { prototype: { pointClass: ScatterPoint } } } = SeriesRegistry.seriesTypes;
/* *
*
* Class
*
* */
class ContourPoint extends ScatterPoint {
}
/* *
*
* Default Export
*
* */
export default ContourPoint;