UNPKG

highcharts

Version:
22 lines (21 loc) 724 B
// SPDX-License-Identifier: LicenseRef-Highcharts /** * @license Highcharts JS v12.6.0 (2026-04-13) * @module highcharts/modules/mouse-wheel-zoom * @requires highcharts * * Non-cartesian series zoom module * * (c) 2024-2026 Highsoft AS * Author: Hubert Kozik * * A commercial license may be required depending on use. * See www.highcharts.com/license */ 'use strict'; import Highcharts from '../../Core/Globals.js'; import NonCartesianSeriesZoom from '../../Extensions/NonCartesianSeriesZoom/NonCartesianSeriesZoom.js'; const G = Highcharts; G.NonCartesianSeriesZoom = G.NonCartesianSeriesZoom || NonCartesianSeriesZoom; G.NonCartesianSeriesZoom.compose(G.Chart, G.Series, G.Tooltip); export default Highcharts;