I have a data set like this
temperature,Timezone
45,2019-08-01 12:34:34 CEST+0200
90,2019-08-01 12:34:35 CEST+0200
25,2019-08-01 12:34:36 CEST+0200
3,2019-08-01 12:34:37 CEST+0200
98,2019-08-01 12:34:38 CEST+0200
32,2019-08-01 12:34:39 CEST+0200
96,2019-08-01 12:34:40 CEST+0200
55,2019-08-01 12:34:41 CEST+0200
57,2019-08-01 12:34:42 CEST+0200
20,2019-08-01 12:34:44 CEST+0200
41,2019-08-01 12:34:45 CEST+0200
29,2019-08-01 12:34:46 CEST+0200
48,2019-08-01 12:34:47 CEST+0200
56,2019-08-01 12:34:48 CEST+0200
56,2019-08-01 12:34:49 CEST+0200
This is the data which is in the csv and when i convert this data to json
by angular package so it will convert the Timezone
values to string
and that's why when these values are passing to Highcarts
series data so graph(Highcarts line graph)
is not plotting. Actually this time is converted in specific timezone so that's why i want to show the time exactly in the csv. So how can i achieve this?