Subtitle

You can add a subtitle to your chart using the Subtitle component:

import { Chart, Series, Subtitle } from "@highcharts/react";
export default function SubtitleChart() {
return (
<Chart>
<Subtitle>Monthly sales data overview</Subtitle>
<Series data={[3, 4, 1, 5, 2]} />
</Chart>
);
}

The Subtitle component accepts all subtitle API options as props. The subtitle text can be passed as children.