Legend

You can customize the chart legend using the Legend component:

import { Chart, Series, Legend } from "@highcharts/react";
export default function LegendChart() {
return (
<Chart>
<Legend>{"{index}: {name}"}</Legend>
<Series data={[3, 4, 1, 5, 2]} />
</Chart>
);
}

The Legend component accepts all legend API options as props. The label format can be passed as children.