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 annotation = chart.annotations();
chart.title('Get and modify annotation object. Use mouse to draw annotation');
chart.container('container');
annotation.startDrawing('fibonacciFan');