next-learn
next-learn copied to clipboard
Error: yAxisLabels is not defined
https://nextjs.org/learn/dashboard-app/fetching-data#fetching-data-for-revenuechart
Then, uncomment the <RevenueChart/> component, navigate to the component file (/app/ui/dashboard/revenue-chart.tsx) and uncomment the code inside it. Check your localhost, you should be able to see a chart that uses revenue data.
This generates Error: yAxisLabels is not defined
I propose adding this fix:
const chartHeight = 350;`
const { yAxisLabels, topLabel } = generateYAxis(revenue);