UNPKG

highcharts

Version:
23 lines (22 loc) 643 B
/** * @license Highcharts JS v12.2.0 (2025-04-07) * @module highcharts/modules/exporting * @requires highcharts * * Exporting module * * (c) 2010-2025 Torstein Honsi * * License: www.highcharts.com/license */ 'use strict'; import Highcharts from '../../Core/Globals.js'; import Exporting from '../../Extensions/Exporting/Exporting.js'; import HttpUtilities from '../../Core/HttpUtilities.js'; const G = Highcharts; G.HttpUtilities = G.HttpUtilities || HttpUtilities; G.ajax = G.HttpUtilities.ajax; G.getJSON = G.HttpUtilities.getJSON; G.post = G.HttpUtilities.post; Exporting.compose(G.Chart, G.Renderer); export default Highcharts;