anychart.onDocumentReady(function () {
var chart = anychart.pie([
{x: 'Cycling', value: 10},
{x: 'Swimming', value: 12},
{x: 'Hiking', value: 11},
{x: 'Alpinism', value: 9}
var legend = chart.legend();
legend.background('#CFD8DC');
chart.title('Set legend background parameter as a string');
chart.container('container');