anychart.onDocumentReady(function() {
var chart = anychart.line();
chart.title("Logarithmic Scale Sample");
var logScale = anychart.scales.log();
var yAxis = chart.yAxis();
yAxis.title("This Axis Has 'Logarithmic' Type");
chart.container("container");