AnyChart
API Reference
Still have questions?
Contact support
Top
You are looking at an outdated v7 version of this document. Switch to the v8 version to see the up to date information.

class anychart.core.annotations.FibonacciTimezones Improve this Doc

Extends: anychart.core.annotations.FibonacciBase

Fibonacci Timezones annotation.

Methods Overview

Specific settings
getPlot()Returns the plot on which the annotation is drawn.
getType()Returns annotation type.
hoverMarkers()Hover markers settings.
levels()Getter for the fibonacci levels.
markers()Markers settings.
selectMarkers()Select markers settings.
Axes and Scales
xScale()X-scale settings
yScale()Y-scale settings
Charts
getChart()Returns the chart on which the annotation is drawn.
Coloring
color()Color settings.
hoverStroke()Hover stroke settings.
hoverTrend()Hover trend settings.
selectStroke()Select stroke settings.
selectTrend()Select trend settings.
stroke()Stroke settings.
trend()Trend settings.
Interactivity
allowEdit()Interactivity settings.
Size and Position
hoverGap()Hover gap settings.
secondValueAnchor()Second value anchor settings
secondXAnchor()Second X anchor settings
valueAnchor()Value anchor settings
xAnchor()X anchor settings

Methods Description

allowEdit

Getter for an interactivity in the annotation.

Returns:

boolean - Interactivity settings.
See listing.
var currentAllowEdit = annotation.allowEdit();
Setter for an interactivity in the annotation.

Params:

NameTypeDescription
value*Whether to disable the interactivity in the annotation. If set to false, the interactivity is disabled in the annotation.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.

color

Getter for the annotation color.

Returns:

string - The annotation color.
See listing.
var color = annotation.color();
Setter for the annotation color.

Params:

NameTypeDescription
valuestringColor as a string.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.

getChart

Returns the chart on which the annotation is drawn.

getPlot

Returns the plot on which the annotation is drawn.

Returns:

anychart.core.stock.Plot - Stock plot.

getType

Returns annotation type.

Returns:

anychart.enums.AnnotationTypes | string - Annotation type

hoverGap

Getter for the hover gap.

Returns:

number - The hover gap value.
See listing.
var currentHoverGap = annotation.hoverGap();
Setter for the hover gap.
The contour size around annotation.

Params:

NameTypeDescription
value*Value to set.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.

hoverMarkers

Getter for data hover markers.

Returns:

anychart.core.ui.MarkersFactory - Markers instance.
Setter for data hover markers.

Params:

NameTypeDefaultDescription
valueObject | boolean | null | string
false
Data markers settings.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.

hoverStroke

Getter for hover stroke settings.

Returns:

anychart.graphics.vector.Stroke - Hover stroke settings.
See listing.
var currentHoverStroke = annotation.hoverStroke();
Setter for the hover stroke by function.

Params:

NameTypeDefaultDescription
strokeFunctionfunction
function() {
 return anychart.color.darken(this.sourceColor);
}
Function that looks like function(){ // this.index - series index. // this.sourceColor - color returned by fill() getter. // this.iterator - series point iterator. return strokeValue; // type anychart.graphics.vector.Stroke or anychart.graphics.vector.ColoredFill }.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.
Setter for hover stroke settings. Learn more about stroke settings.

Params:

NameTypeDefaultDescription
coloranychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | function | null
Stroke settings.
thicknessnumber
1
Line thickness.
dashpatternstring
Controls the pattern of dashes and gaps used to stroke paths.
lineJoinanychart.graphics.vector.StrokeLineJoin
Line join style.
lineCapanychart.graphics.vector.StrokeLineCap
Line cap style.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.

hoverTrend

Getter for hover trend settings.

Returns:

anychart.graphics.vector.Stroke - Hover trend settings.
See listing.
var currentHoverTrend = annotation.hoverTrend();
Setter for the hover trend by function.

Params:

NameTypeDefaultDescription
trendFunctionfunction
function() {
 return anychart.color.darken(this.sourceColor);
}
Function that looks like function(){ // this.index - series index. // this.sourceColor - color returned by fill() getter. // this.iterator - series point iterator. return strokeValue; // type anychart.graphics.vector.Stroke or anychart.graphics.vector.ColoredFill }.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.
Setter for hover trend settings. Learn more about stroke settings.

Params:

NameTypeDefaultDescription
valueanychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | function | null
Trend settings.
thicknessnumber
1
Line thickness.
dashpatternstring
Controls the pattern of dashes and gaps used to stroke paths.
lineJoinanychart.graphics.vector.StrokeLineJoin
Line join style.
lineCapanychart.graphics.vector.StrokeLineCap
Line cap style.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.

levels

Getter for the fibonacci levels.

Returns:

Array.<number> - List of annotations levels.
See listing.
var fibonacciArc = controller.getAnnotationAt(0);
var currentLevels = fibonacciArc.levels();
Setter for the fibonacci levels.

Params:

NameTypeDescription
valuesArray.<*>Value to set.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.

markers

Getter for data markers.

Returns:

anychart.core.ui.MarkersFactory - Markers instance.
Setter for data markers.

Params:

NameTypeDefaultDescription
valueObject | boolean | null | string
false
Data markers settings.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.

secondValueAnchor

Getter for the second value anchor.

Returns:

* - The second value anchor.
See listing.
var controller = chart.annotations();
var annotation = controller.fibonacciTimezones();
var currentSecondValueAnchor = annotation.secondValueAnchor();
Setter for the second value anchor.

Params:

NameTypeDescription
Second*value anchor to set.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.

secondXAnchor

Getter for the second X anchor.

Returns:

* - The second X anchor.
See listing.
var controller = chart.annotations();
var annotation = controller.fibonacciTimezones();
var currentSecondXAnchor = annotation.secondXAnchor();
Setter for the second X anchor.

Params:

NameTypeDescription
Second*X anchor to set.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.

selectMarkers

Getter for data select markers.

Returns:

anychart.core.ui.MarkersFactory - Markers instance.
Setter for data select markers.

Params:

NameTypeDefaultDescription
valueObject | boolean | null | string
false
Data markers settings.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.

selectStroke

Getter for select stroke settings.

Returns:

anychart.graphics.vector.Stroke - Select stroke settings.
See listing.
var currentSelectStroke = annotation.selectStroke();
Setter for the select stroke by function.

Params:

NameTypeDefaultDescription
strokeFunctionfunction
function() {
 return anychart.color.darken(this.sourceColor);
}
Function that looks like function(){ // this.index - series index. // this.sourceColor - color returned by fill() getter. // this.iterator - series point iterator. return strokeValue; // type anychart.graphics.vector.Stroke or anychart.graphics.vector.ColoredFill }.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.
Setter for select stroke settings. Learn more about stroke settings.

Params:

NameTypeDefaultDescription
coloranychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | function | null
Stroke settings.
thicknessnumber
1
Line thickness.
dashpatternstring
Controls the pattern of dashes and gaps used to stroke paths.
lineJoinanychart.graphics.vector.StrokeLineJoin
Line join style.
lineCapanychart.graphics.vector.StrokeLineCap
Line cap style.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.

selectTrend

Getter for select trend settings.

Returns:

anychart.graphics.vector.Stroke - Select trend settings.
See listing.
var currentSelectTrend = annotation.selectTrend();
Setter for the select trend by function.

Params:

NameTypeDefaultDescription
trendFunctionfunction
function() {
 return anychart.color.darken(this.sourceColor);
}
Function that looks like function(){ // this.index - series index. // this.sourceColor - color returned by fill() getter. // this.iterator - series point iterator. return strokeValue; // type anychart.graphics.vector.Stroke or anychart.graphics.vector.ColoredFill }.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.
Setter for select trend settings. Learn more about stroke settings.

Params:

NameTypeDefaultDescription
valueanychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | function | null
Trend settings.
thicknessnumber
1
Line thickness.
dashpatternstring
Controls the pattern of dashes and gaps used to stroke paths.
lineJoinanychart.graphics.vector.StrokeLineJoin
Line join style.
lineCapanychart.graphics.vector.StrokeLineCap
Line cap style.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.

stroke

Getter for annotation stroke settings.

Returns:

anychart.graphics.vector.Stroke - Stroke settings.
See listing.
var currentAnnotationStroke = annotation.stroke();
Setter for the annotation stroke by function.

Params:

NameTypeDefaultDescription
strokeFunctionfunction
function() {
 return anychart.color.darken(this.sourceColor);
}
Function that looks like function(){ // this.index - series index. // this.sourceColor - color returned by fill() getter. // this.iterator - series point iterator. return strokeValue; // type anychart.graphics.vector.Stroke or anychart.graphics.vector.ColoredFill }.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.
Setter for annotation stroke settings. Learn more about stroke settings.

Params:

NameTypeDefaultDescription
coloranychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | function | null
Stroke settings.
thicknessnumber
1
Line thickness.
dashpatternstring
Controls the pattern of dashes and gaps used to stroke paths.
lineJoinanychart.graphics.vector.StrokeLineJoin
Line join style.
lineCapanychart.graphics.vector.StrokeLineCap
Line cap style.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.

trend

Getter for annotation trend settings.

Returns:

anychart.graphics.vector.Stroke - Trend settings.
See listing.
var currentAnnotationTrend = annotation.trend();
Setter for the annotation trend by function.

Params:

NameTypeDefaultDescription
trendFunctionfunction
function() {
 return anychart.color.darken(this.sourceColor);
}
Function that looks like function(){ // this.index - series index. // this.sourceColor - color returned by fill() getter. // this.iterator - series point iterator. return strokeValue; // type anychart.graphics.vector.Stroke or anychart.graphics.vector.ColoredFill }.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.
Setter for annotation trend settings. Learn more about stroke settings.

Params:

NameTypeDefaultDescription
valueanychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | function | null
Trend settings.
thicknessnumber
1
Line thickness.
dashpatternstring
Controls the pattern of dashes and gaps used to stroke paths.
lineJoinanychart.graphics.vector.StrokeLineJoin
Line join style.
lineCapanychart.graphics.vector.StrokeLineCap
Line cap style.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.

valueAnchor

Getter for the value anchor.

Returns:

* - The value anchor.
See listing.
var controller = chart.annotations();
var annotation = controller.fibonacciTimezones();
var currentValueAnchor = annotation.valueAnchor();
Setter for the value anchor.

Params:

NameTypeDescription
value*Value anchor to set.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.

xAnchor

Getter for the X anchor.

Returns:

* - The X anchor.
See listing.
var controller = chart.annotations();
var annotation = controller.fibonacciTimezones();
var currentXAnchor = annotation.xAnchor();
Setter for the X anchor.

Params:

NameTypeDescription
value*X anchor to set.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.

xScale

yScale

Getter for the Y-scale.

Returns:

anychart.scales.Base - Default scale value.
Setter for the Y-scale.

Params:

NameTypeDescription
valueanychart.scales.BaseY-scale to set.

Returns:

anychart.core.annotations.FibonacciTimezones - Self instance for method chaining.