anychart.onDocumentReady(function () {
var chart = anychart.line();
chart.line([10, 4, 17, 20, 16, 35, 6, 15]);
var background = chart.background();
background.stroke("2 #2196F3");
chart.title("Get and modify background object.");
chart.container("container");