UNPKG

highcharts

Version:
22 lines (21 loc) 724 B
// SPDX-License-Identifier: LicenseRef-Highcharts /** * @license Highcharts JS v13.0.1 (2026-08-17) * @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;