@highcharts/react
Version:
Official Highcharts integration for React
36 lines • 1.14 kB
JavaScript
/**
* React integration.
* Copyright (c) 2025, Highsoft
*
* A valid license is required for using this software.
* See highcharts.com/license
*
* Built for Highcharts v.xx.
* Build stamp: 2025-07-17
*
*/
import { getHighcharts } from "../Highcharts.js";
import exporting from "highcharts/esm/modules/exporting.src.js";
if (typeof getHighcharts().__provided === "undefined") {
typeof exporting === "function" && exporting(getHighcharts());
}
import offlineexporting from "highcharts/esm/modules/offline-exporting.src.js";
if (typeof getHighcharts().__provided === "undefined") {
typeof offlineexporting === "function" && offlineexporting(getHighcharts());
}
import exportdata from "highcharts/esm/modules/export-data.src.js";
if (typeof getHighcharts().__provided === "undefined") {
typeof exportdata === "function" && exportdata(getHighcharts());
}
export function Exporting(props) {
return null;
}
Exporting._HCReact = {
type: "HC_Option",
HCOption: "exporting",
childOption: "",
defaultOptions: undefined,
isArrayType: false,
};
export default Exporting;
//# sourceMappingURL=Exporting.js.map