anychart.onDocumentReady(function () {
var chart = anychart.ohlc([
[new Date('28-Aug-07'), 511.53, 514.98, 505.79, 506.40],
[new Date('29-Aug-07'), 507.84, 513.30, 507.23, 512.88],
[new Date('30-Aug-07'), 512.36, 515.40, 510.58, 511.40],
[new Date('31-Aug-07'), 513.10, 516.50, 511.47, 515.25],
[new Date('01-Sep-07'), 515.02, 528.00, 514.62, 525.15]
var axis = chart.xAxis();
axis.minorTicks({stroke: '#424242'});
var xScale = chart.xScale();
xScale.minorTicks([new Date('27-Aug-07'), new Date('29-Aug-07'), new Date('31-Aug-07'), new Date('02-Sep-07')]);
xScale.minimum(Date.UTC(2007, 7, 27)).maximum(Date.UTC(2007, 8, 1));
chart.title('Set minor ticks');
chart.container('container');