anychart.onDocumentReady(function () {
var table = anychart.data.table('x');
{x: '2015-12-24', volume: 211, stroke: '2px DarkGreen'},
{x: '2015-12-25', volume: 512},
{x: '2015-12-26', volume: 311},
{x: '2015-12-27', volume: 411},
{x: '2015-12-28', volume: 611, stroke: '2px #FF0000'},
{x: '2015-12-29', volume: 512},
{x: '2015-12-30', volume: 411},
{x: '2015-12-31', volume: 311},
{x: '2016-01-01', volume: 510}
var mapping = table.mapAs({'value':'volume', 'stroke': 'stroke'});
var chart = anychart.stock(true);
chart.plot(0).column(mapping).name('Volume');
chart.container('container');