UNPKG

highcharts

Version:
39 lines (38 loc) 672 B
/* * * * (c) 2010-2025 Torstein Honsi * * 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 } } } = SeriesRegistry; /* * * * Class * * */ class GaugePoint extends Point { /* * * * Functions * * */ /* eslint-disable valid-jsdoc */ /** * Don't do any hover colors or anything * @private */ setState(state) { this.state = state; } } /* * * * Default Export * * */ export default GaugePoint;