anychart.onDocumentReady(function () {
var stage = anychart.graphics.create('container');
var chart = anychart.waterfall([
{x: 'Net Sales', value: 5085000},
{x: 'Cost of Sales', value: -1250450},
{x: 'Gross Income', isTotal: true},
{x: 'Operating Expenses', value: -2350050},
{x: 'Operating Income', isTotal: true},
{x: 'Other Income', value: 750000},
{x: 'Extraordinary Gain', value: -230050}
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);