class anychart.core.annotations.FibonacciArc Improve this Doc
Extends: anychart.core.annotations.FibonacciBase
Fibonacci Arc 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. |
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
color
Returns:
string - The annotation color.var color = annotation.color();
Learn more about coloring.
Params:
Name | Type | Description |
---|---|---|
value | string | Color as a string. |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.Try it:
getChart
Returns:
anychart.core.SeparateChart - Chart.Try it:
getPlot
Returns:
anychart.core.stock.Plot - Stock plot.Try it:
getType
hoverGap
Returns:
number - The hover gap value.var currentHoverGap = annotation.hoverGap();
The contour size around annotation.
Params:
Name | Type | Description |
---|---|---|
value | * | Value to set. |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.Try it:
hoverMarkers
- null/boolean - disable or enable annotation hover markers.
- object - sets annotation hover markers settings.
- string - sets annotation hover markers type.
Params:
Name | Type | Default | Description |
---|---|---|---|
value | Object | boolean | null | string | false | Data markers settings. |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.hoverStroke
Returns:
anychart.graphics.vector.Stroke - Hover stroke settings.var currentHoverStroke = annotation.hoverStroke();
Params:
Name | Type | Default | Description |
---|---|---|---|
strokeFunction | function | 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.FibonacciArc - Self instance for method chaining.Try it:
Params:
Name | Type | Default | Description |
---|---|---|---|
color | anychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | function | null | Stroke settings. | |
thickness | number | 1 | Line thickness. |
dashpattern | string | Controls the pattern of dashes and gaps used to stroke paths. | |
lineJoin | anychart.graphics.vector.StrokeLineJoin | Line join style. | |
lineCap | anychart.graphics.vector.StrokeLineCap | Line cap style. |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.Try it:
hoverTrend
Returns:
anychart.graphics.vector.Stroke - Hover trend settings.var currentHoverTrend = annotation.hoverTrend();
Params:
Name | Type | Default | Description |
---|---|---|---|
trendFunction | function | 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.FibonacciArc - Self instance for method chaining.Try it:
Params:
Name | Type | Default | Description |
---|---|---|---|
value | anychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | function | null | Trend settings. | |
thickness | number | 1 | Line thickness. |
dashpattern | string | Controls the pattern of dashes and gaps used to stroke paths. | |
lineJoin | anychart.graphics.vector.StrokeLineJoin | Line join style. | |
lineCap | anychart.graphics.vector.StrokeLineCap | Line cap style. |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.Try it:
levels
Returns:
Array.<number> - List of annotations levels.var fibonacciArc = controller.getAnnotationAt(0); var currentLevels = fibonacciArc.levels();
Params:
Name | Type | Description |
---|---|---|
values | Array.<*> | Value to set. |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.Try it:
markers
- null/boolean - disable or enable annotation markers.
- object - sets annotation markers settings.
- string - sets annotation markers type.
Params:
Name | Type | Default | Description |
---|---|---|---|
value | Object | boolean | null | string | false | Data markers settings. |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.secondValueAnchor
Returns:
* - The second value anchor.var controller = chart.annotations(); var annotation = controller.fibonacciArc(); var currentSecondValueAnchor = annotation.secondValueAnchor();
Params:
Name | Type | Description |
---|---|---|
Second | * | value anchor to set. |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.Try it:
secondXAnchor
Returns:
* - The second X anchor.var controller = chart.annotations(); var annotation = controller.fibonacciArc(); var currentSecondXAnchor = annotation.secondXAnchor();
Params:
Name | Type | Description |
---|---|---|
Second | * | X anchor to set. |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.Try it:
selectMarkers
- null/boolean - disable or enable annotation select markers.
- object - sets annotation select markers settings.
- string - sets annotation select markers type.
Params:
Name | Type | Default | Description |
---|---|---|---|
value | Object | boolean | null | string | false | Data markers settings. |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.selectStroke
Returns:
anychart.graphics.vector.Stroke - Select stroke settings.var currentSelectStroke = annotation.selectStroke();
Params:
Name | Type | Default | Description |
---|---|---|---|
strokeFunction | function | 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.FibonacciArc - Self instance for method chaining.Try it:
Params:
Name | Type | Default | Description |
---|---|---|---|
color | anychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | function | null | Stroke settings. | |
thickness | number | 1 | Line thickness. |
dashpattern | string | Controls the pattern of dashes and gaps used to stroke paths. | |
lineJoin | anychart.graphics.vector.StrokeLineJoin | Line join style. | |
lineCap | anychart.graphics.vector.StrokeLineCap | Line cap style. |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.Try it:
selectTrend
Returns:
anychart.graphics.vector.Stroke - Select trend settings.var currentSelectTrend = annotation.selectTrend();
Params:
Name | Type | Default | Description |
---|---|---|---|
trendFunction | function | 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.FibonacciArc - Self instance for method chaining.Try it:
Params:
Name | Type | Default | Description |
---|---|---|---|
value | anychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | function | null | Trend settings. | |
thickness | number | 1 | Line thickness. |
dashpattern | string | Controls the pattern of dashes and gaps used to stroke paths. | |
lineJoin | anychart.graphics.vector.StrokeLineJoin | Line join style. | |
lineCap | anychart.graphics.vector.StrokeLineCap | Line cap style. |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.Try it:
stroke
Returns:
anychart.graphics.vector.Stroke - Stroke settings.var currentAnnotationStroke = annotation.stroke();
Params:
Name | Type | Default | Description |
---|---|---|---|
strokeFunction | function | 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.FibonacciArc - Self instance for method chaining.Try it:
Params:
Name | Type | Default | Description |
---|---|---|---|
color | anychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | function | null | Stroke settings. | |
thickness | number | 1 | Line thickness. |
dashpattern | string | Controls the pattern of dashes and gaps used to stroke paths. | |
lineJoin | anychart.graphics.vector.StrokeLineJoin | Line join style. | |
lineCap | anychart.graphics.vector.StrokeLineCap | Line cap style. |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.Try it:
trend
Returns:
anychart.graphics.vector.Stroke - Trend settings.var currentAnnotationTrend = annotation.trend();
Params:
Name | Type | Default | Description |
---|---|---|---|
trendFunction | function | 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.FibonacciArc - Self instance for method chaining.Try it:
Params:
Name | Type | Default | Description |
---|---|---|---|
value | anychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | function | null | Trend settings. | |
thickness | number | 1 | Line thickness. |
dashpattern | string | Controls the pattern of dashes and gaps used to stroke paths. | |
lineJoin | anychart.graphics.vector.StrokeLineJoin | Line join style. | |
lineCap | anychart.graphics.vector.StrokeLineCap | Line cap style. |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.Try it:
valueAnchor
Returns:
* - The value anchor.var controller = chart.annotations(); var annotation = controller.fibonacciArc(); var currentValueAnchor = annotation.valueAnchor();
Params:
Name | Type | Description |
---|---|---|
value | * | Value anchor to set. |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.Try it:
xAnchor
Returns:
* - The X anchor.var controller = chart.annotations(); var annotation = controller.fibonacciArc(); var currentXAnchor = annotation.xAnchor();
Params:
Name | Type | Description |
---|---|---|
value | * | X anchor to set. |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.Try it:
xScale
Returns:
anychart.scales.Ordinal | anychart.scales.Linear | anychart.scales.Logarithmic | anychart.scales.StockScatterDateTime - Default scale value.Try it:
Params:
Name | Type | Description |
---|---|---|
value | anychart.scales.Base | anychart.scales.StockScatterDateTime | Value to set |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.Try it:
yScale
Params:
Name | Type | Description |
---|---|---|
value | anychart.scales.Base | Y-scale to set. |
Returns:
anychart.core.annotations.FibonacciArc - Self instance for method chaining.Try it: