class anychart.core.stock.Scroller Improve this Doc
Extends: anychart.core.ui.Scroller
Stock scroller class. Adds series drawing to UI Scroller.
Methods Overview
| Specific settings | |
| addSeries() | Add series to chart. |
| allowRangeChange() | Mode of the range changing. |
| defaultSeriesType() | Default series type. |
| getSeriesAt() | Gets the series by its index. |
| getSeriesCount() | Returns series count. |
| removeAllSeries() | Removes all series from chart. |
| removeSeries() | Removes one of series from chart by its id. |
| removeSeriesAt() | Removes one of series from chart by its index. |
| thumbs() | Thumbs settings. |
| Axes and Scales | |
| xAxis() | X-axis settings. |
| yScale() | Y-scale settings. |
| Chart Coloring | |
| hatchFillPalette() | Hatch fill palette settings. |
| palette() | Palette settings. |
| Coloring | |
| fill() | Fill settings. |
| outlineStroke() | Stroke settings. |
| selectedFill() | Fill settings. |
| Events | |
| listen() | Adds an event listener. |
| listenOnce() | Adds a single time event listener. |
| removeAllListeners() | Removes all listeners. |
| unlisten() | Removes the listener. |
| unlistenByKey() | Removes the listener by the key. |
| Export | |
| print() | Prints all elements. |
| Interactivity | |
| autoHide() | Auto hide setting. |
| enabled() | Element state (enabled or disabled). |
| Series | |
| area() | Adds Area series. |
| candlestick() | Adds Candlestick series. |
| column() | Adds Column series. |
| getSeries() | Gets series by its id. |
| hilo() | Adds HiLo series. |
| jumpLine() | Adds Jump Line series. |
| line() | Adds Line series. |
| marker() | Adds Marker series. |
| ohlc() | Adds OHLC series. |
| rangeArea() | Adds Range Area series. |
| rangeColumn() | Adds Range Column series. |
| rangeSplineArea() | Adds Range Column series. |
| rangeStepArea() | Adds Range Step area series. |
| spline() | Adds Range Step area series. |
| splineArea() | Adds Spline Area series. |
| stepArea() | Adds Step Area series. |
| stepLine() | Adds Step Line series. |
| stick() | Adds Stick series. |
| Size and Position | |
| height() | Scroller height. |
| maxHeight() | Scroller maximum height. |
| minHeight() | Scroller minimum height. |
| orientation() | Scroller orientation. |
| zIndex() | Z-index of the element. |
| Technical Indicators | |
| adl() | Creates an Accumulation Distribution Line indicator on the scroller. |
| ama() | Creates AMA (Adaptive Moving Average) indicator on the scroller. |
| aroon() | Creates Aroon indicator on the scroller. |
| atr() | Creates an Average True Range indicator on the chart. |
| bbands() | Creates Bollinger Bands indicator on the scroller. |
| bbandsB() | Creates %B indicator on the scroller. |
| bbandsWidth() | Creates Bollinger Bands Width indicator on the scroller. |
| cci() | Creates a Commodity Channel Index indicator on the scroller. |
| cho() | Creates a Chaikin Oscillator indicator on the chart. |
| cmf() | Creates a Chaikin Money Flow indicator on the chart. |
| dmi() | Creates a Directional Movement Index indicator on the chart. |
| ema() | Creates EMA (Exponential Moving Average) indicator on the scroller. |
| kdj() | Creates a KDJ indicator on the scroller. |
| macd() | Creates MACD (Moving Average Convergence Divergence) indicator on the scroller. |
| mma() | Creates MMA (Modified Moving Average) indicator on the scroller. |
| roc() | Creates RoC (Rate of Change) indicator on the scroller. |
| rsi() | Creates RSI (Relative Strength Index) indicator on the scroller. |
| sma() | Creates SMA (Simple Moving Average) indicator on the scroller. |
| stochastic() | Creates a Stochastic indicator on the scroller. |
Methods Description
addSeries
Note: We recommend to use the line and area types for the scroller series.
Params:
| Name | Type | Description |
|---|---|---|
| var_args | anychart.data.View | anychart.data.Set | Array | Chart series data. |
Returns:
Array.<anychart.core.stock.scrollerSeries.Base> - Array of created series.Try it:
adl
Params:
| Name | Type | Description |
|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. |
| seriesType | anychart.enums.StockSeriesType | Series type. |
Returns:
anychart.core.stock.indicators.ADL - An instance of the created series.Try it:
allowRangeChange
Returns:
boolean - The current mode of the range changing.var scroller = chart.xScroller(); currentScroller.allowRangeChange();
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | boolean | true | Value to set. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
ama
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. | |
| period | number | 20 | Period. |
| fastPeriod | number | 2 | Fast period. |
| slowPeriod | number | 30 | Slow period. |
| seriesType | anychart.enums.StockSeriesType | string | "line" | Series type for AMA indicator. |
Returns:
anychart.core.stock.indicators.AMA - An instance of the created series.Try it:
area
Params:
| Name | Type | Description |
|---|---|---|
| data | anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string | Value to set. |
| mappingSettings | Object.<string, ({column: number, type: anychart.enums.AggregationType, weights: number}|number)> | 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 - 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'. |
| csvSettings | Object | CSV parser settings if the string is passed. |
Returns:
anychart.core.stock.scrollerSeries.Area - An instance of the created series.Try it:
aroon
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping | |
| period | number | 20 | Period |
| upSeriesType | anychart.enums.StockSeriesType | "line" | Up Series type for the Aroon indicator. |
| downSeriesType | anychart.enums.StockSeriesType | "line" | Down Series type for the Aroon indicator. |
Returns:
anychart.core.stock.indicators.Aroon - An instance of the created series.Try it:
atr
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. | |
| period | number | 14 | Moving average period value. |
| seriesType | anychart.enums.StockSeriesType | "line" | Series type for the Average True Range indicator. |
Returns:
anychart.core.stock.indicators.ATR - An instance of the created series.Try it:
autoHide
Returns:
boolean - The current value.var currentScroller = chart.xScroller(); currentScroller.autoHide();
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | boolean | false | Value to set. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
bbands
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. | |
| period | number | 20 | Moving average period value. |
| deviation | number | 2 | The multiplier applied to the moving average to compute upper and lower bands of the indicator. |
| upperSeriesType | anychart.enums.StockSeriesType | string | "line" | Upper Series type for the Bollinger Bands indicator. |
| lowerSeriesType | anychart.enums.StockSeriesType | string | "line" | Lower Series type for the Bollinger Bands indicator. |
| middleSeriesType | anychart.enums.StockSeriesType | string | "line" | Middle Series type for the Bollinger Bands indicator. |
Returns:
anychart.core.stock.indicators.BBands - An instance of the created series.Try it:
bbandsB
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. | |
| period | number | 20 | Moving average period value. |
| deviation | number | 2 | The multiplier applied to the moving average to compute upper and lower bands of the indicator. |
| seriesType | anychart.enums.StockSeriesType | string | "line" | Series type for the %B indicator. |
Returns:
anychart.core.stock.indicators.BBandsB - An instance of the created series.Try it:
bbandsWidth
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. | |
| period | number | 20 | Moving average period value. |
| deviation | number | 2 | The multiplier applied to the moving average to compute upper and lower bands of the indicator. |
| seriesType | anychart.enums.StockSeriesType | string | "line" | Series type for the Bollinger Bands Width indicator. |
Returns:
anychart.core.stock.indicators.BBandsWidth - An instance of the created series.Try it:
candlestick
Params:
| Name | Type | Description |
|---|---|---|
| data | anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string | Value to set. |
| mappingSettings | Object.<string, ({column: number, type: anychart.enums.AggregationType, weights: number}|number)> | 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 - 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'. |
| csvSettings | Object | CSV parser settings if the string is passed. |
Returns:
anychart.core.stock.scrollerSeries.Candlestick - An instance of the created series.Try it:
cci
Params:
| Name | Type | Description |
|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. |
| period | number | Moving average period value. |
| seriesType | anychart.enums.StockSeriesType | Series type. |
Returns:
anychart.core.stock.indicators.CCI - An instance of the created series.Try it:
cho
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. | |
| fastPeriod | number | 3 | Indicator period. |
| slowPeriod | number | 10 | Indicator period. |
| maType | string | EMA | Indicator smoothing type. |
| seriesType | anychart.enums.StockSeriesType | "line" | Series type. |
Returns:
anychart.core.stock.indicators.CHO - An instance of the created series.Try it:
cmf
Params:
| Name | Type | Description |
|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. |
| period | number | Moving average period value. |
| seriesType | anychart.enums.StockSeriesType | Series type. |
Returns:
anychart.core.stock.indicators.CMF - An instance of the created series.Try it:
column
Params:
| Name | Type | Description |
|---|---|---|
| data | anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string | Value to set. |
| mappingSettings | Object.<string, ({column: number, type: anychart.enums.AggregationType, weights: number}|number)> | 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 - 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'. |
| csvSettings | Object | CSV parser settings if the string is passed. |
Returns:
anychart.core.stock.scrollerSeries.Column - An instance of the created series.defaultSeriesType
Note: We recommend to use the line and area types for the scroller series.
Returns:
string | anychart.enums.StockSeriesType - Default series type.Try it:
Note: We recommend to use the line and area types for the scroller series.
Params:
| Name | Type | Description |
|---|---|---|
| value | string | anychart.enums.StockSeriesType | Default series type. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
dmi
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. | |
| period | number | 14 | Moving average period value. |
| adxPeriod | number | 14 | Period for ADX. |
| useWildersSmoothing | boolean | true | Wilders smoothing mode. |
| pdiSeriesType | anychart.enums.StockSeriesType | "line" | Type for +DI series. |
| ndiSeriesType | anychart.enums.StockSeriesType | "line" | Type for -DI series. |
| adxSeriesType | anychart.enums.StockSeriesType | "line" | Type for ADX series. |
Returns:
anychart.core.stock.indicators.DMI - An instance of the created series.Try it:
ema
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. | |
| period | number | 20 | Period. |
| seriesType | string | anychart.enums.StockSeriesType | "line" | Series type for EMA indicator (type as "line", "column", "ohlc"). |
Returns:
anychart.core.stock.indicators.EMA - An instance of the created series.Try it:
enabled
Returns:
boolean - The current element state.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | boolean | true | Value to set. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.if (!element.enabled()) element.enabled(true);
Try it:
fill
Returns:
anychart.graphics.vector.Fill - The current fill color.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | anychart.graphics.vector.Fill | "#fff" | Color as an array or a string. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| color | string | Color as a string. |
| opacity | number | Color opacity. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| keys | Array.<(anychart.graphics.vector.GradientKey|string)> | Gradient keys. |
| angle | number | Gradient angle. |
| mode | boolean | anychart.graphics.vector.Rect | Object | Gradient mode. |
| opacity | number | Gradient opacity. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| keys | Array.<(anychart.graphics.vector.GradientKey|string)> | Color-stop gradient keys. |
| cx | number | X ratio of center radial gradient. |
| cy | number | Y ratio of center radial gradient. |
| mode | anychart.graphics.math.Rect | If defined then userSpaceOnUse mode, else objectBoundingBox. |
| opacity | number | Opacity of the gradient. |
| fx | number | X ratio of focal point. |
| fy | number | Y ratio of focal point. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| imageSettings | anychart.graphics.vector.Fill | Object with settings. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
getSeries
Params:
| Name | Type | Description |
|---|---|---|
| id | number | string | Id of the series. |
Returns:
anychart.core.stock.scrollerSeries.Base - An instance of the created series.Try it:
getSeriesAt
Params:
| Name | Type | Description |
|---|---|---|
| index | number | Index of the series. |
Returns:
anychart.core.stock.scrollerSeries.Base - An instance of the created series.Try it:
getSeriesCount
hatchFillPalette
Returns:
anychart.palettes.HatchFills - Hatch fill palette settings.var hatchFillPalette = scroller.hatchFillPalette();
Params:
| Name | Type | Description |
|---|---|---|
| value | Array.<anychart.graphics.vector.HatchFill.HatchFillType> | Object | anychart.palettes.HatchFills | Hatch fill palette settings to set. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
height
Returns:
number | string - The current scroller height.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | number | string | 40 | Scroller height |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
hilo
Params:
| Name | Type | Description |
|---|---|---|
| data | anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string | Value to set. |
| mappingSettings | Object.<({column: number, type: anychart.enums.AggregationType, weights: number}|number)> | 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 - 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'. |
| csvSettings | Object | CSV parser settings if the string is passed. |
Returns:
anychart.core.stock.scrollerSeries.Hilo - An instance of the created series.Try it:
jumpLine
Params:
| Name | Type | Description |
|---|---|---|
| data | anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string | Value to set. |
| mappingSettings | Object.<string, ({column: number, type: anychart.enums.AggregationType, weights: number}|number)> | 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 - 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'. |
| csvSettings | Object | CSV parser settings if the string is passed. |
Returns:
anychart.core.stock.scrollerSeries.JumpLine - An instance of the created series.kdj
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. | |
| kPeriod | number | 14 | Indicator %K period. |
| kMAPeriod | number | 5 | Indicator %K smoothing period. |
| dPeriod | number | 5 | Indicator %D period. |
| kMAType | anychart.enums.MovingAverageType | "ema" | Indicator %K smoothing type. |
| dMAType | anychart.enums.MovingAverageType | "ema" | Indicator %D smoothing type. |
| kMultiplier | number | -2 | The %K multiplier to calculate the % J values. |
| dMultiplier | number | 3 | The %D multiplier to calculate the % J values. |
| kSeriesType | anychart.enums.StockSeriesType | "line" | Series type for %K value. |
| dSeriesType | anychart.enums.StockSeriesType | "line" | Series type for %D value. |
| jSeriesType | anychart.enums.StockSeriesType | "line" | Series type for %J value. |
Returns:
anychart.core.stock.indicators.KDJ - An instance of the created series.Try it:
line
Params:
| Name | Type | Description |
|---|---|---|
| data | anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string | Value to set. |
| mappingSettings | Object.<string, ({column: number, type: anychart.enums.AggregationType, weights: number}|number)> | 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 - 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'. |
| csvSettings | Object | CSV parser settings if the string is passed. |
Returns:
anychart.core.stock.scrollerSeries.Line - An instance of the created series.listen
Note Notice that if the existing listener is one-off (added using listenOnce), it will cease to be such after calling the listen() method.
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| type | string | The event type id. | |
| listener | function | Callback method. Function that looks like function(event){
// event.actualTarget - actual event target
// event.currentTarget - current event target
// event.iterator - event iterator
// event.originalEvent - original event
// event.point - event point
// event.pointIndex - event point index
}. | |
| useCapture | boolean | false | Whether to fire in capture phase. Learn more about capturing https://javascript.info/bubbling-and-capturing |
| listenerScope | Object | Object in whose scope to call the listener. |
Returns:
Object - Unique key for the listener.Try it:
listenOnce
If the event handler being added already exists, listenOnce will do nothing.
Note In particular, if the handler is already registered using listen(), listenOnce() will not make it one-off. Similarly, if a one-off listener already exists, listenOnce will not change it (it wil remain one-off).
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| type | string | The event type id. | |
| listener | function | Callback method. | |
| useCapture | boolean | false | Whether to fire in capture phase. Learn more about capturing https://javascript.info/bubbling-and-capturing |
| listenerScope | Object | Object in whose scope to call the listener. |
Returns:
Object - Unique key for the listener.Try it:
macd
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. | |
| fastPeriod | number | 12 | Fast period. Fast period must be greater than the slow period. |
| slowPeriod | number | 26 | Slow period. |
| signalPeriod | number | 9 | Signal period. |
| macdSeriesType | string | anychart.enums.StockSeriesType | "line" | Series type for MACD indicator (type as "line", "column", "ohlc"). |
| signalSeriesType | string | anychart.enums.StockSeriesType | "line" | Series type for signal (type as "line", "column", "ohlc"). |
| histogramSeriesType | string | anychart.enums.StockSeriesType | "column" | Series type for histogram (type as "line", "column", "ohlc"). |
Returns:
anychart.core.stock.indicators.MACD - An instance of the created series.Try it:
marker
Params:
| Name | Type | Description |
|---|---|---|
| data | anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string | Value to set. |
| mappingSettings | Object.<string, ({column: number, type: anychart.enums.AggregationType, weights: number}|number)> | 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 - 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'. |
| csvSettings | Object | CSV parser settings if the string is passed. |
Returns:
anychart.core.stock.scrollerSeries.Marker - An instance of the created series.Try it:
maxHeight
Returns:
number | string | null - The current scroller maximum height.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| value | number | string | null | Maximum height |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
minHeight
Returns:
number | string | null - The current scroller minimum height.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| value | number | string | null | Minimum height. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
mma
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. | |
| period | number | 20 | Period. |
| seriesType | anychart.enums.StockSeriesType | string | "line" | Series type for MMA indicator. |
Returns:
anychart.core.stock.indicators.MMA - An instance of the created series.Try it:
ohlc
Params:
| Name | Type | Description |
|---|---|---|
| data | anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string | Value to set. |
| mappingSettings | Object.<string, ({column: number, type: anychart.enums.AggregationType, weights: number}|number)> | 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 - 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'. |
| csvSettings | Object | CSV parser settings if the string is passed. |
Returns:
anychart.core.stock.scrollerSeries.OHLC - An instance of the created series.orientation
Returns:
anychart.enums.Orientation | string - Scroller orientation.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | anychart.enums.Orientation | string | "bottom" | Scroller orientation. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
outlineStroke
Returns:
anychart.graphics.vector.Stroke - The current stroke settings.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | anychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | null | "#cecece" | Stroke settings. |
| thickness | number | 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.stock.Scroller - Self instance for method chaining.Try it:
palette
Try it:
Params:
| Name | Type | Description |
|---|---|---|
| value | anychart.palettes.RangeColors | anychart.palettes.DistinctColors | Object | Array.<string> | Colors palette settings to set. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Params:
| Name | Type | Default | Description |
|---|---|---|---|
| paperSizeOrOptions | anychart.graphics.vector.PaperSize | Object | Paper size or object with options. | |
| landscape | boolean | false | Flag of landscape. |
Try it:
rangeArea
Params:
| Name | Type | Description |
|---|---|---|
| data | anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string | Value to set. |
| mappingSettings | Object.<string, ({column: number, type: anychart.enums.AggregationType, weights: number}|number)> | 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 - 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'. |
| csvSettings | Object | CSV parser settings if the string is passed. |
Returns:
anychart.core.stock.scrollerSeries.RangeArea - An instance of the created series.Try it:
rangeColumn
Params:
| Name | Type | Description |
|---|---|---|
| data | anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string | Value to set. |
| mappingSettings | Object.<string, ({column: number, type: anychart.enums.AggregationType, weights: number}|number)> | 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 - 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'. |
| csvSettings | Object | CSV parser settings if the string is passed. |
Returns:
anychart.core.stock.scrollerSeries.RangeColumn - An instance of the created series.Try it:
rangeSplineArea
Params:
| Name | Type | Description |
|---|---|---|
| data | anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string | Value to set. |
| mappingSettings | Object.<string, ({column: number, type: anychart.enums.AggregationType, weights: number}|number)> | 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 - 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'. |
| csvSettings | Object | CSV parser settings if the string is passed. |
Returns:
anychart.core.stock.scrollerSeries.RangeSplineArea - An instance of the created series.Try it:
rangeStepArea
Params:
| Name | Type | Description |
|---|---|---|
| data | anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string | Value to set. |
| mappingSettings | Object.<string, ({column: number, type: anychart.enums.AggregationType, weights: number}|number)> | 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 - 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'. |
| csvSettings | Object | CSV parser settings if the string is passed. |
Returns:
anychart.core.stock.scrollerSeries.RangeStepArea - An instance of the created series.Try it:
removeAllListeners
Params:
| Name | Type | Description |
|---|---|---|
| type | string | Type of event to remove, default is to remove all types. |
Returns:
number - Number of listeners removed.Try it:
removeAllSeries
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
removeSeries
Params:
| Name | Type | Description |
|---|---|---|
| id | number | string | Series id. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
removeSeriesAt
Params:
| Name | Type | Description |
|---|---|---|
| index | number | Series index. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
roc
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. | |
| period | number | 20 | Period. |
| seriesType | string | anychart.enums.StockSeriesType | "line" | Series type for Roc indicator (type as "line", "column", "ohlc"). |
Returns:
anychart.core.stock.indicators.RoC - An instance of the created series.Try it:
rsi
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. | |
| period | number | 14 | Period. |
| seriesType | string | anychart.enums.StockSeriesType | "line" | Series type for RSI indicator (type as "line", "column", "ohlc"). |
Returns:
anychart.core.stock.indicators.RSI - An instance of the created series.Try it:
selectedFill
Returns:
anychart.graphics.vector.Fill - The current fill color.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | anychart.graphics.vector.Fill | {color: "#1976d2", opacity: 0.2} | Color as an array or a string. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| color | string | Color as a string. |
| opacity | number | Color opacity. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| keys | Array.<(anychart.graphics.vector.GradientKey|string)> | Gradient keys. |
| angle | number | Gradient angle. |
| mode | boolean | anychart.graphics.vector.Rect | Object | Gradient mode. |
| opacity | number | Gradient opacity. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| keys | Array.<(anychart.graphics.vector.GradientKey|string)> | Color-stop gradient keys. |
| cx | number | X ratio of center radial gradient. |
| cy | number | Y ratio of center radial gradient. |
| mode | anychart.graphics.math.Rect | If defined then userSpaceOnUse mode, else objectBoundingBox. |
| opacity | number | Opacity of the gradient. |
| fx | number | X ratio of focal point. |
| fy | number | Y ratio of focal point. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| imageSettings | anychart.graphics.vector.Fill | Object with settings. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
sma
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. | |
| period | number | 20 | Period. |
| seriesType | string | anychart.enums.StockSeriesType | "line" | Series type for SMA indicator (type as "line", "column", "ohlc"). |
Returns:
anychart.core.stock.indicators.SMA - An instance of the created series.Try it:
spline
Params:
| Name | Type | Description |
|---|---|---|
| data | anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string | Value to set. |
| mappingSettings | Object.<string, ({column: number, type: anychart.enums.AggregationType, weights: number}|number)> | 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 - 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'. |
| csvSettings | Object | CSV parser settings if the string is passed. |
Returns:
anychart.core.stock.scrollerSeries.Spline - An instance of the created series.Try it:
splineArea
Params:
| Name | Type | Description |
|---|---|---|
| data | anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string | Value to set. |
| mappingSettings | Object.<string, ({column: number, type: anychart.enums.AggregationType, weights: number}|number)> | 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 - 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'. |
| csvSettings | Object | CSV parser settings if the string is passed. |
Returns:
anychart.core.stock.scrollerSeries.SplineArea - An instance of the created series.Try it:
stepArea
Params:
| Name | Type | Description |
|---|---|---|
| data | anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string | Value to set. |
| mappingSettings | Object.<string, ({column: number, type: anychart.enums.AggregationType, weights: number}|number)> | 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 - 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'. |
| csvSettings | Object | CSV parser settings if the string is passed. |
Returns:
anychart.core.stock.scrollerSeries.StepArea - An instance of the created series.Try it:
stepLine
Params:
| Name | Type | Description |
|---|---|---|
| data | anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string | Value to set. |
| mappingSettings | Object.<string, ({column: number, type: anychart.enums.AggregationType, weights: number}|number)> | 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 - 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'. |
| csvSettings | Object | CSV parser settings if the string is passed. |
Returns:
anychart.core.stock.scrollerSeries.StepLine - An instance of the created series.Try it:
stick
Params:
| Name | Type | Description |
|---|---|---|
| data | anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string | Value to set. |
| mappingSettings | Object.<string, ({column: number, type: anychart.enums.AggregationType, weights: number}|number)> | 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 - 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'. |
| csvSettings | Object | CSV parser settings if the string is passed. |
Returns:
anychart.core.stock.scrollerSeries.Stick - An instance of the created series.stochastic
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. | |
| kPeriod | number | 14 | Moving average period value for %K. |
| kMAPeriod | number | 1 | Indicator %K smoothing period. |
| dPeriod | number | 3 | Moving average period value for %D. |
| kMAType | anychart.enums.MovingAverageType | "sma" | Indicator %K smoothing type. |
| dMAType | anychart.enums.MovingAverageType | "sma" | Indicator %D smoothing type. |
| kSeriesType | anychart.enums.StockSeriesType | "line" | Series type for %K value. |
| dSeriesType | anychart.enums.StockSeriesType | "line" | Series type for %D value. |
Returns:
anychart.core.stock.indicators.Stochastic - An instance of the created series.Try it:
thumbs
- null/boolean - disable or enable thumbs.
- object - sets thumbs settings.
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | boolean | Object | null | null | Thumbs settings. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.unlisten
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| type | string | The event type id. | |
| listener | function | Callback method. | |
| useCapture | boolean | false | Whether to fire in capture phase. Learn more about capturing https://javascript.info/bubbling-and-capturing |
| listenerScope | Object | Object in whose scope to call the listener. |
Returns:
boolean - Whether any listener was removed.Try it:
unlistenByKey
Params:
| Name | Type | Description |
|---|---|---|
| key | Object | The key returned by listen() or listenOnce(). |
Returns:
boolean - Whether any listener was removed.Try it:
xAxis
Returns:
anychart.core.axes.StockDateTime - Axis instance.Try it:
- null/boolean - disable or enable scroller Y-axis.
- object - sets scroller Y-axis settings.
Params:
| Name | Type | Description |
|---|---|---|
| value | Object | boolean | null | Chart axis settings to set. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.yScale
Returns:
anychart.scales.ScatterBase - Default chart scale value.var myScroller = chart.scroller(); myScroller.yScale();
Params:
| Name | Type | Description |
|---|---|---|
| value | anychart.enums.ScatterScaleTypes | anychart.scales.ScatterBase | Y-scale to set. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
zIndex
Returns:
number - The current zIndex.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | number | 0 | Value to set. |
Returns:
anychart.core.stock.Scroller - Self instance for method chaining.Try it:
