When receiving data in a JSON file can the Date be in string format "mm/dd/yyyy" or do they have to be specified as new Date (mm dd yyyy)
when setting the primaryXAxis how can I specify the interval as "Days"
typical JSON I am getting :
[
{
"Date": "3/27/2018",
"Close": "168.34"
},
{
"Date": "3/26/2018",
"Close": "172.77"
},
{
"Date": "3/23/2018",
"Close": "164.94"
},
{
"Date": "3/22/2018",
"Close": "168.845"
},
{
"Date": "3/21/2018",
"Close": "171.27"
}
]