I’m trying to implement renko chart in angular like this .
But when I added data variable in my ts file I’m getting this error:
Error: ./src/app/pages/stockdetails/stockdetails.component.ts 24:40
Module parse failed: Invalid number (24:40)
File was processed with these loaders:
* ./node_modules/@angular-devkit/build-angular/src/babel/webpack-loader.js
* ./node_modules/@ngtools/webpack/src/ivy/index.js
You may need an additional loader to handle the result of these loaders.
| { x: new Date(2012, 60, 10), y: [5283, 5348, 5032, 5229] },
| { x: new Date(2012, 70, 10), y: [5220, 5448, 5164, 5258] },
> { x: new Date(2012, 08, 10), y: [5276, 5735, 5215, 5703] },
| { x: new Date(2012, 09, 10), y: [5704, 5815, 4888, 5619] },
| { x: new Date(2012, 10, 10), y: [5609, 5885, 5548, 5879] },
-
This topic was modified 3 years, 7 months ago by azadcoder.