UNPKG

highcharts

Version:
27 lines (26 loc) 705 B
/** * @license Highcharts JS v12.3.0 (2025-06-21) * @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; // Class G.Exporting = Exporting; // Compatibility G.HttpUtilities = G.HttpUtilities || HttpUtilities; G.ajax = G.HttpUtilities.ajax; G.getJSON = G.HttpUtilities.getJSON; G.post = G.HttpUtilities.post; // Compose Exporting.compose(G.Chart, G.Renderer); export default Highcharts;