Title

You can customize the chart title using the Title component:

import { Chart, Series, Title } from "@highcharts/react";
export default function TitleChart() {
return (
<Chart>
<Title>Monthly Sales</Title>
<Series 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.