anychart.format.inputDateTimeFormat('yyyy-MM-dd');
anychart.onDocumentReady(function () {
var chart = anychart.area();
chart.credits().enabled(false);
var series = chart.area(json);
chart.xAxis().labels().format(function () {
return anychart.format.dateTime(this.value, anychart.format.outputDateFormat());
chart.yGrid().enabled(true);
chart.yGrid().stroke({dash: "3 5", color: 'lightgray'});
chart.xGrid().enabled(true);
chart.xGrid().stroke({dash: "3 5", color: 'lightgray'});
chart.container("container");