Subtitle
You can add a subtitle to your chart using the Subtitle component:
import { Chart, Subtitle } from "@highcharts/react";import { LineSeries } from "@highcharts/react/series/Line";export default function SubtitleChart() {return (<Chart><Subtitle>Monthly sales data overview</Subtitle><LineSeries 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.