anychart.onDocumentReady(function () {
var chart = anychart.scatter();
chart.yAxis(1, {orientation: 'right'});
chart.yAxis(1).scale('log');
var crosshair = chart.crosshair();
crosshair.yLabel(0, false);
crosshair.yLabel(1, {background: {fill: '#CFD8DC', stroke: '#455A64'}, fontColor: 'black'});
chart.title('Set Y-label parameter as an object');
chart.container('container');