anychart.onDocumentReady(function () {
var table = anychart.standalones.table(6, 2);
var sharedScale = anychart.scales.linear();
var bullet1 = anychart.bullet([{value: 11, fill: '#64b5f6'}, {value: 13, stroke: '#545f69'}]);
bullet1.scale(sharedScale);
var bullet2 = anychart.bullet([{value: 14, fill: '#64b5f6'}, {value: 13, stroke: '#545f69'}]);
bullet2.scale(sharedScale);
var bullet3 = anychart.bullet([{value: 9, fill: '#64b5f6'}, {value: 13, stroke: '#545f69'}]);
bullet3.scale(sharedScale);
var bullet4 = anychart.bullet([{value: 16, fill: '#64b5f6'}, {value: 13, stroke: '#545f69'}]);
bullet4.scale(sharedScale);
table.getRow(0).height('10%');
table.getRow(5).height('10%');
table.getCell(0, 0).colSpan(2);
var sharedAxis = anychart.standalones.axes.linear();
sharedAxis.scale(sharedScale);
sharedAxis.padding(-20, 0);
sharedAxis.ticks({position: 'inside'});
sharedAxis.minorTicks(false);
sharedAxis.labels({offsetY: 25});
tableTitle = anychart.standalones.label();
tableTitle.width('100%');
tableTitle.height('100%');
tableTitle.hAlign('center');
tableTitle.text('Seasons statistic');
table.container('container');