anychart.onDocumentReady(function () {
var chart = anychart.line3d();
'Site Visits During 2017 Year<br/>' +
'<span style="color:#212121; font-size: 13px;">' +
'Considered to be the total amount of visits, including repeatable' +
chart.yAxis().title('Number of Visits');
var series = chart.line();
series.name('Number of Visits');
series.labels().enabled(true).fontColor('#212121');
chart.interactivity().hoverMode('by-x');
chart.container('container');