anychart.onDocumentReady(function () {
var stage = anychart.graphics.create('container');
var chart = anychart.tagCloud(data);
chart.title('Get and use pixel bounds object');
var bounds = chart.getPixelBounds();
var customBackground = anychart.standalones.background();
customBackground.fill('#ff7f50 0.2');
customBackground.parentBounds(bounds);
customBackground.container(stage);
{x: 'learning', value: 80},
{x: 'meaning', value: 40},
{x: 'useful', value: 36},
{x: 'different', value: 32},
{x: 'grammar', value: 28},
{x: 'teaching', value: 24},
{x: 'example', value: 20},
{x: 'includes', value: 56},
{x: 'vocabulary', value: 10},
{x: 'frequency', value: 10},
{x: 'phrases', value: 15},
{x: 'content', value: 27}