highcharts
Version:
JavaScript charting framework
28 lines (27 loc) • 923 B
JavaScript
// SPDX-License-Identifier: LicenseRef-Highcharts
/**
* @license Highcharts JS v12.6.0 (2026-04-13)
* @module highcharts/modules/offline-exporting
* @requires highcharts
* @requires highcharts/modules/exporting
*
* Client side exporting module
*
* (c) 2015-2026 Highsoft AS
* Author: Torstein Hønsi / Øystein Moseng
*
* A commercial license may be required depending on use.
* See www.highcharts.com/license
*/
;
import Highcharts from '../../Core/Globals.js';
import DownloadURL from '../../Shared/DownloadURL.js';
import OfflineExporting from '../../Extensions/OfflineExporting/OfflineExporting.js';
const G = Highcharts;
// Compatibility
G.dataURLtoBlob = G.dataURLtoBlob || DownloadURL.dataURLtoBlob;
G.downloadSVGLocal = OfflineExporting.downloadSVGLocal;
G.downloadURL = G.downloadURL || DownloadURL.downloadURL;
// Compose
OfflineExporting.compose(G.Exporting);
export default Highcharts;