AnyChart
API Reference
Still have questions?
Contact support
Top

class anychart.core.stock.scrollerSeries.Stick Improve this Doc

Methods Overview

Specific settings
getIndex()Gets series index.
labels()Labels settings.
maxPointWidth()Maximum point width settings.
minPointLength()Minimum point length settings.
pointWidth()Point width settings.
Coloring
colorScale()Color scale settings.
stroke()Stroke settings.
Data
data()Data settings.
Interactivity
enabled()Element state (enabled or disabled).
normal()Normal state settings.
selected()Hovered state settings.
Point Elements
maxLabels()Maximum labels settings.
minLabels()Minimum labels settings.
Scales
yScale()Y-scale settings.
Series
allowPointSettings()Allows to set point settings from data.
rendering()Rendering settings
seriesType()Switch the series type
Size and Position
bottom()Bottom bound settings.
bounds()Bounds settings.
getPixelBounds()Returns pixel bounds.
height()Height settings.
left()Left bound settings.
maxHeight()Maximum height.
maxWidth()Maximum width.
minHeight()Minimum height.
minWidth()Minimum width.
right()Right bound settings.
top()Top bound settings.
width()Width settings.
zIndex()Z-index of the element.

Methods Description

allowPointSettings

Getter for the allowPointSettings flag.

Returns:

boolean - Returns allowPointSettings flag.
See listing
var scroller = chart.scroller();
var series = scroller.column(data);
var allowPointSettings = series.allowPointSettings();
Setter for the allowPointSettings flag.

Params:

NameTypeDefaultDescription
enabledboolean
false
Allows to set individual point settings.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

bottom

Getter for element bottom bound settings.

Returns:

number | string | undefined - Element's bottom bound setting.
Setter for element bottom bound settings.

Params:

NameTypeDefaultDescription
bottomnumber | string | null
null
Bottom bound settings for the element.

Returns:

anychart.core.stock.scrollerSeries.Stick - Returns self for method chaining.

bounds

Getter for element bounds settings.

Returns:

anychart.core.utils.Bounds - Bounds of the element.
Setter for bounds of the element using one parameter.

Params:

NameTypeDescription
boundsanychart.utils.RectObj | anychart.math.Rect | anychart.core.utils.BoundsBounds of element.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.
Setter for element bounds settings.

Params:

NameTypeDefaultDescription
xnumber | string
null
X-coordinate.
ynumber | string
null
Y-coordinate.
widthnumber | string
null
Width.
heightnumber | string
null
Height.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

colorScale

Getter for the color scale.
See listing
var series = scroller.line(mapping);
var colorScale = series.colorScale();
Setter for the color scale.

Params:

NameTypeDescription
settingsanychart.scales.LinearColor | anychart.scales.OrdinalColor | Object | anychart.enums.ScaleTypes | stringColor scale to set.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

data

Gets data for the scroller series.

Returns:

anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string - Returns mapping.
Sets data for the scroller series.

Params:

NameTypeDescription
valueanychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | stringData for the scroller series.
mappingSettingsObject.<string, ({column: number, type: (anychart.enums.AggregationType|string), weights: number}|number)>Mapping settings. An object where keys are field names and values are objects with fields: - 'column': number - Column index, that the field should get values from; - 'type': anychart.enums.AggregationType|string - How to group values for the field. Defaults to 'close'. - 'weights': number - Column to get weights from for 'weightedAverage' grouping type. Note: If type set to 'weightedAverage', but opt_weightsColumn is not passed - uses 'average' grouping instead. or numbers - just the column index to get values from. In this case the grouping type will be set to 'close'.
csvSettingsObjectCSV parser settings if the string is passed.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

enabled

Getter for the element state (enabled or disabled).

Returns:

boolean - Element state.
Setter for the element enabled state.

Params:

NameTypeDefaultDescription
enabledboolean
true
Enabled state to set.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.
Example.
if (!element.enabled())
   element.enabled(true);

getIndex

Gets series index.

Returns:

number - Returns the series index.

getPixelBounds

Returns pixel bounds of the element due to parent bounds and self bounds settings.

Returns:

anychart.math.Rect - Pixel bounds of the element.

height

Getter for element height settings.

Returns:

number | string | undefined - Element's height setting.
Setter for element height setting.

Params:

NameTypeDefaultDescription
heightnumber | string | null
null
Height settings for the element.

Returns:

anychart.core.stock.scrollerSeries.Stick - Returns self for method chaining.

labels

Getter for chart labels.

Returns:

anychart.core.ui.LabelsFactory - Axis labels instance.
Setter for chart labels.

Params:

NameTypeDescription
settingsObject | boolean | nullAxis labels.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

left

Getter for element left bound settings.

Returns:

number | string | undefined - Element's left bound setting.
Setter for element left bound settings.

Params:

NameTypeDefaultDescription
leftnumber | string | null
null
Left bound setting for the element.

Returns:

anychart.core.stock.scrollerSeries.Stick - Returns self for method chaining.

maxHeight

Getter for the maximum height.

Returns:

number | string | null - Element's maximum height.
Setter for the maximum height.

Params:

NameTypeDefaultDescription
heightnumber | string | null
null
Maximum height to set.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

maxLabels

Getter for maximum labels.

Returns:

anychart.core.ui.LabelsFactory - Labels instance.
Setter for maximum labels.

Params:

NameTypeDescription
settingsObject | boolean | nullMaximum labels settings.

Returns:

anychart.core.stock.series.Base | anychart.core.ui.LabelsFactory - Self instance for method chaining.

maxPointWidth

Getter for the maximum point width.

Returns:

string | number - The maximum point width pixel value.
See listing
var maxPointWidth = scroller.maxPointWidth();
Setter for the maximum point width.

Params:

NameTypeDescription
widthnumber | stringPoint width pixel value.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

maxWidth

Getter for the maximum width.

Returns:

number | string | null - Element's maximum width.
Setter for the maximum width.

Params:

NameTypeDefaultDescription
widthnumber | string | null
null
Maximum width to set.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

minHeight

Getter for the minimum height.

Returns:

number | string | null - Element's minimum height.
Setter for the minimum height.

Params:

NameTypeDefaultDescription
heightnumber | string | null
null
Minimum height to set.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

minLabels

Getter for minimum labels.

Returns:

anychart.core.ui.LabelsFactory - Labels instance.
Setter for minimum labels.

Params:

NameTypeDescription
settingsObject | boolean | nullMinimum labels settings.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

minPointLength

Getter for the minimum point length.

Returns:

string | number - The minimum point length pixel value.
See listing
var minPointLength = scroller.minPointLength();
Setter for the minimum point length.

Params:

NameTypeDescription
lengthnumber | stringMinimum point length pixel value.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

minWidth

Getter for the minimum width.

Returns:

number | string | null - Element's minimum width.
Setter for the minimum width.

Params:

NameTypeDefaultDescription
widthnumber | string | null
null
Minimum width to set.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

normal

Getter for normal state settings.

Returns:

anychart.core.StateSettings - Normal state settings.
Setter for normal state settings.

Params:

NameTypeDescription
settingsObjectState settings to set.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

pointWidth

Getter for point width settings.

Returns:

string | number - Point width pixel value.
Setter for the point width settings.

Params:

NameTypeDefaultDescription
widthnumber | string | null
'90%'
Point width pixel value.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

rendering

Getter for the series rendering.

Returns:

anychart.core.series.RenderingSettings - Rendering settings.
Setter for the series rendering settings.

Params:

NameTypeDescription
settingsObject | functionRendering settings to set.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.
Getter for element right bound settings.

Returns:

number | string | undefined - Element's right bound setting.
Setter for element right bound setting.

Params:

NameTypeDefaultDescription
rightnumber | string | null
null
Right bound setting for the element.

Returns:

anychart.core.stock.scrollerSeries.Stick - Returns self for method chaining.

selected

Getter for selected state settings.

Returns:

anychart.core.StateSettings - Selected state settings
Setter for selected state settings.

Params:

NameTypeDescription
settingsObjectState settings to set.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

seriesType

Getter for switching of the series type.

Returns:

string - Series type.
Setter for switching of the series type.

Params:

NameTypeDescription
typestringSeries type.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

stroke

Getter for stroke settings.

Returns:

anychart.graphics.vector.Stroke - Stroke settings.
Setter for stroke settings. Learn more about stroke settings.

Params:

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

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.
Setter for stroke using an object.

Params:

NameTypeDescription
settingsObjectStroke settings from anychart.graphics.vector.Stroke.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

top

Getter for element top bound settings.

Returns:

number | string | undefined - Element's top bound setting.
Setter for element top bound settings.

Params:

NameTypeDefaultDescription
topnumber | string | null
null
Top bound setting for the element.

Returns:

anychart.core.stock.scrollerSeries.Stick - Returns self for method chaining.

width

Getter for element width settings.

Returns:

number | string | undefined - Element's width setting.
Setter for element width setting.

Params:

NameTypeDefaultDescription
widthnumber | string | null
null
Width settings for the element.

Returns:

anychart.core.stock.scrollerSeries.Stick - Returns self for method chaining.

yScale

Getter for the Y-scale.

Returns:

anychart.scales.ScatterBase - Series Y-scale.
See listing
var scroller = chart.scroller();
var series = scroller.line(data);
var yScale = series.yScale();
Setter for the Y-scale.

Params:

NameTypeDefaultDescription
settingsanychart.scales.ScatterBase | Object | anychart.enums.ScaleTypes | string
anychart.scales.Linear
Scale settings to set.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.

zIndex

Getter for the Z-index of the element.

Returns:

number - Z-index.
Setter for the Z-index of the element.

Params:

NameTypeDefaultDescription
zIndexnumber
0
Value to set.

Returns:

anychart.core.stock.scrollerSeries.Stick - Self instance for method chaining.