anychart.onDocumentReady(function () {
anychart.format.outputLocale('cs-cz');
anychart.format.outputDateFormat(anychart.format.getDateTimeFormat('year_month'));
var chart = anychart.area();
var series = chart.area(json);
var dateTimeScale = anychart.scales.dateTime();
dateTimeScale.ticks().interval('day',1);
chart.xScale(dateTimeScale);
chart.xAxis().labels().format(function () {
chart.container("container");