UNPKG

highcharts

Version:
35 lines (34 loc) 625 B
/* * * * (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 * * * */ 'use strict'; /* * * * 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;