anychart.onDocumentReady(function () {
var chart = anychart.line();
chart.title("Logarithmic Scale Sample");
var logScale = anychart.scales.log();
logScale.minimum(0).maximum(1);
logScale.ticks().set([0, 0.001, 0.01, 0.1, 1]);
chart.container("container");