anychart.onDocumentReady(function () {
var chart = anychart.pie([
{x: 1, value: 10, exploded: true},
{x: 2, value: 1, exploded: true},
{x: 3, value: 7, exploded: true},
{x: 4, value: 10, exploded: true}
chart.explode(0).innerRadius('30%');
chart.stroke({color: '#FFF', thickness: 5});
chart.title('Set chart stroke parameters as an object');
chart.container('container');