UNPKG

highcharts

Version:
28 lines (27 loc) 921 B
// SPDX-License-Identifier: LicenseRef-Highcharts /** * @license Highcharts JS v12.5.0 (2026-01-12) * @module highcharts/modules/offline-exporting * @requires highcharts * @requires highcharts/modules/exporting * * Client side exporting module * * (c) 2015-2026 Highsoft AS * Author: Torstein Honsi / 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 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;