Error: Cannot read properties of undefined (reading 'nativeElement'), and barchart did not show

Viewed 43
1 Answers

d3 module is missing from your package, you should install it .

npm install d3 && npm install @types/d3 --save-dev
Related