UNPKG

highcharts

Version:
22 lines (21 loc) 718 B
// SPDX-License-Identifier: LicenseRef-Highcharts /** * @license Highcharts JS v12.5.0 (2026-01-12) * @module highcharts/modules/treemap * @requires highcharts * * (c) 2014-2026 Highsoft AS * Authors: Jon Arild Nygard / Oystein Moseng * * A commercial license may be required depending on use. * See www.highcharts.com/license */ 'use strict'; import Highcharts from '../../Core/Globals.js'; import Breadcrumbs from '../../Extensions/Breadcrumbs/Breadcrumbs.js'; import TreemapSeries from '../../Series/Treemap/TreemapSeries.js'; const G = Highcharts; G.Breadcrumbs = G.Breadcrumbs || Breadcrumbs; G.Breadcrumbs.compose(G.Chart, G.defaultOptions); TreemapSeries.compose(G.Series); export default Highcharts;