Title
You can customize the chart title using the Title component:
import { Chart, Title } from "@highcharts/react";import { LineSeries } from "@highcharts/react/series/Line";export default function TitleChart() {return (<Chart><Title>Monthly Sales</Title><LineSeries data={[3, 4, 1, 5, 2]} /></Chart>);}
The Title component accepts all title API options as props. The title text can be passed as children.