anychart.onDocumentReady(function () {
var chart = anychart.line([
chart.yScale().minimum(0);
var controller = chart.annotations();
var annotation = controller.fibonacciFan();
annotation.valueAnchor(10);
annotation.secondXAnchor(2);
annotation.secondValueAnchor(17);
var normal = annotation.normal();
normal.trend('#F44336', 3, '5 2', 'round');
var hovered = annotation.hovered();
hovered.trend('#4CAF50');
var selected = annotation.selected();
selected.trend('#03A9F4', 5);
chart.title('Set normal, hovered and selected states settings for annotations');
chart.container('container');