UNPKG

highcharts

Version:
23 lines (22 loc) 770 B
// SPDX-License-Identifier: LicenseRef-Highcharts /** * @license Highcharts JS v13.0.1 (2026-08-17) * @module highcharts/modules/marker-clusters * @requires highcharts * * Marker clusters module for Highcharts * * (c) 2010-2026 Highsoft AS * Author: Wojciech Chmiel * * A commercial license may be required depending on use, * see www.highcharts.com/license */ 'use strict'; import Highcharts from '../../Core/Globals.js'; import MarkerClusters from '../../Extensions/MarkerClusters/MarkerClusters.js'; import MarkerClusterSymbols from '../../Extensions/MarkerClusters/MarkerClusterSymbols.js'; const G = Highcharts; MarkerClusters.compose(G.Axis, G.Chart, G.defaultOptions, G.Series); MarkerClusterSymbols.compose(G.SVGRenderer); export default Highcharts;