Data

You can add the data module to your chart using the Data component:

import { Chart } from "@highcharts/react";
import { Data } from "@highcharts/react/options/data";
const csvData = `Month,Sales,Expenses
Jan,100,80
Feb,120,90
Mar,90,70
Apr,150,110
May,130,95`;
export default function DataChart() {
return (
<Chart>
<Data csv={csvData} />
</Chart>
);
}

The Data component accepts all data API options as props.