The timestamps look ok, presumably you know what time zone they are in. The values will need to be turned into numbers, presumably 1,04 represents 1.04. If the file cold be produced with dots instead of commas it would help, but it isn't a big problem.
Now that you have the data in a javascript object you just need to turn it into the format required by the chart. This document describes what is needed, in the section Stored Data.
You haven't given us any indication of your experience, if you are a node red beginner then I recommend watching this playlist: Node-RED Essentials. The videos are done by the developers of node-red. They're nice & short and to the point. You will understand a whole lot more in about 1 hour. A small investment for a lot of gain.
It is useless posting a screenshot showing only half the line length. To post code please copy/paste it and use the </> button at the top of the forum entry window when pasting it in.
Do you mean you don't know how to convert data values to numbers? If so then something like
For the date you should be able to feed it directly into newDate(theDateString). The graph will accept Date objects I think in the structure. If not the use toTime() to convert to milliseconds.
For converting the arrays of values and numbers look at the Array.map() function rather than iterating through the array.
My previous post should help with converting the values, but you seem to have misinterpreted the information in the link I posted. For filling the chart with information from a set of data you need to construct it as described in the section Stored Data.