anychart.onDocumentReady(function () {
var dataSet = anychart.data.set(getData());
var firstSeriesData = dataSet.mapAs({ x: 0, value: 1 });
var secondSeriesData = dataSet.mapAs({ x: 0, value: 2 });
var chart = anychart.area3d();
chart.yAxis().labels().format('${%Value}');
chart.yAxis().title('The Share Price');
chart.xAxis().title('Year/Month/Day');
chart.xAxis().labels().padding([5, 5, 0, 5]);
'The cost of ACME\'s shares<br/>' +
'<span style="color:#212121; font-size: 13px;">Statistics was collected from site N during September</span>'
chart.title().useHtml(true).padding([0, 0, 20, 0]);
var firstSeries = chart.area(firstSeriesData);
firstSeries.name('ACME Share Price');
firstSeries.hovered().markers(false);
firstSeries.hatchFill('diagonal');
var secondSeries = chart.area(secondSeriesData);
secondSeries.name('The Competitor\'s Share Price');
secondSeries.hovered().markers(false);
secondSeries.hatchFill('diagonal-brick');
var toolitp = chart.tooltip();
chart.interactivity().hoverMode('by-x');
chart.container('container');