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,ExpensesJan,100,80Feb,120,90Mar,90,70Apr,150,110May,130,95`;export default function DataChart() {return (<Chart><Data csv={csvData} /></Chart>);}
The Data component accepts all data API options as props.