I created an amCharts Stock Chart based on a date axis to show inventory quantity. Although I have 4 data entries in my dataset, only 2 dates are shown in the graph.
Here is my problem in JSFiddle : amCharts Stock Chart Example
[
{
"Date": "2018-01-30T23:00:00Z",
"DateText": "31.01.2018",
"Qty": 32
},
{
"Date": "2018-01-30T23:00:00Z",
"DateText": "31.01.2018",
"Qty": 74
},
{
"Date": "2018-09-10T22:00:00Z",
"DateText": "11.09.2018",
"Qty": 74
},
{
"Date": "2018-09-10T22:00:00Z",
"DateText": "11.09.2018",
"Qty": 49
}
]
only 2 dates are shown in the graphbecause you do have only to distinct dates! - Roman Koliada