I am plotting area chart using amcharts, the x-axis data date values range from 08/01/2014 to 08/30/2014. But the graph displaying the x-axis values from 07/31/2014 onwards. This issue is found only in latest version of windows Firefox and chrome. Attaching the screen shot of the graph plotted and the dataProvider values below.
dataProvider = [{
"value": 0,
"date": "2014-08-01"
},
{
"value": 17
"date": "2014-08-02"
},
{
"value": 24
"date": "2014-08-03"
},
{
"value": 26
"date": "2014-08-04"
},
....
]
How could I solve this? Any help would be appreciated. Thanks in advance.