anychart.onDocumentReady(function () {
var chart = anychart.line([
{x: 'Theatre', value: 10},
{x: 'Literature', value: 4},
{x: 'Cinema', value: 17},
{x: 'Sculpture', value: 16},
{x: 'Painting', value: 6}
var animationSettings = chart.animation();
animationSettings.duration(3000);
animationSettings.enabled(true);
chart.title('Get and modify animation object');
chart.container('container');