Exporting
You can add the exporting module to your chart using the Exporting component:
import { Chart } from "@highcharts/react";import { LineSeries } from "@highcharts/react/series/Line";import { Exporting } from "@highcharts/react/modules/Exporting";export default function ExportingChart() {return (<Chart><Exporting chartOptions={{ title: { text: "exported Chart" } }} /><LineSeries data={[3, 4, 1, 5, 2]} /></Chart>);}
The Exporting component accepts all exporting API options as props.