/* * * * (c) 2010-2021 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 { constructor() { /* * * * Properties * * */ super(...arguments); this.options = void 0; this.series = void 0; this.shapeArgs = void 0; /* eslint-enable valid-jsdoc */ } /* * * * Functions * * */ /* eslint-disable valid-jsdoc */ /** * Don't do any hover colors or anything * @private */ setState(state) { this.state = state; } } /* * * * Default Export * * */ export default GaugePoint;