UNPKG

highcharts

Version:
24 lines (23 loc) 805 B
// SPDX-License-Identifier: LicenseRef-Highcharts /** * @license Highcharts JS v12.6.0 (2026-04-13) * @module highcharts/modules/navigator * @requires highcharts * * Standalone navigator module * * (c) 2009-2026 Highsoft AS * Author: Mateusz Bernacik * * A commercial license may be required depending on use. * See www.highcharts.com/license */ 'use strict'; import Highcharts from '../../Core/Globals.js'; import StandaloneNavigator from '../../Stock/Navigator/StandaloneNavigator.js'; import NavigatorComposition from '../../Stock/Navigator/NavigatorComposition.js'; const G = Highcharts; G.StandaloneNavigator = G.StandaloneNavigator || StandaloneNavigator; G.navigator = G.StandaloneNavigator.navigator; NavigatorComposition.compose(G.Chart, G.Axis, G.Series); export default Highcharts;