class anychart.core.ui.ScrollBar Improve this Doc
Extends: anychart.core.VisualBaseWithBounds
Scroll bar.
Methods Overview
| Specific settings | |
| buttonsVisible() | Enable/disable scroll button | 
| Coloring | |
| backgroundFill() | Background fill settings. | 
| backgroundStroke() | Background stroke settings. | 
| mouseOutOpacity() | The mouse out opacity | 
| mouseOverOpacity() | The mouse over opacity | 
| sliderFill() | Slider fill settings. | 
| sliderStroke() | Slider stroke settings. | 
| Interactivity | |
| enabled() | Element state (enabled or disabled). | 
| Size and Position | |
| barSize() | Bar size settings. | 
| bottom() | Bottom bound settings. | 
| bounds() | Bounds settings. | 
| cornersRadius() | Corners radius | 
| 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
backgroundFill
Returns:
anychart.graphics.vector.Fill | string - Background fill settings.Params:
| Name | Type | Description | 
|---|---|---|
| color | anychart.graphics.vector.Fill | Array.<(anychart.graphics.vector.GradientKey|string)> | Color as an array, an object or string. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.Params:
| Name | Type | Description | 
|---|---|---|
| color | string | Color as a string. | 
| opacity | number | Color opacity. | 
Returns:
anychart.core.ui.ScrollBar - 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.ui.ScrollBar - Self instance for method chaining.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.ui.ScrollBar - Self instance for method chaining.Params:
| Name | Type | Description | 
|---|---|---|
| imageSettings | anychart.graphics.vector.Fill | Object with settings. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.backgroundStroke
Returns:
anychart.graphics.vector.Stroke | string - Background stroke settings.var stroke = scrollBar.backgroundStroke();
Params:
| Name | Type | Description | 
|---|---|---|
| color | anychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | null | Stroke settings. | 
| thickness | number | Line thickness. | 
| dashpattern | string | Controls the pattern of dashes and gaps used to stroke paths. | 
| lineJoin | string | anychart.graphics.vector.StrokeLineJoin | Line join style. | 
| lineCap | string | anychart.graphics.vector.StrokeLineCap | Line cap style. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.Try it:
barSize
Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| size | number | 10 | Bar size to set. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.Try it:
bottom
Returns:
number | string | undefined - Element's bottom bound setting.Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| bottom | number | string | null | null | Bottom bound settings for the element. | 
Returns:
anychart.core.ui.ScrollBar - Returns self for method chaining.Try it:
bounds
Returns:
anychart.core.utils.Bounds - Bounds of the element.Params:
| Name | Type | Description | 
|---|---|---|
| bounds | anychart.utils.RectObj | anychart.math.Rect | anychart.core.utils.Bounds | Bounds of element. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.Try it:
Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| x | number | string | null | X-coordinate. | 
| y | number | string | null | Y-coordinate. | 
| width | number | string | null | Width. | 
| height | number | string | null | Height. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.Try it:
buttonsVisible
Returns:
boolean - ButtonsVisible Flag.var buttonsVisible = scrollBar.buttonsVisible();
Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| enabled | boolean | false | Whether show or hide the scroll buttons. | 
Returns:
boolean | anychart.core.ui.ScrollBar - Self instance for method chaining.Try it:
cornersRadius
Returns:
number - Scrollbar corners radius.var cornersRadius = scrollBar.cornersRadius()
Note: corners radius can't exceed the half of the smallest scroll bar side.
Params:
| Name | Type | Description | 
|---|---|---|
| radius | number | Corners radius to set. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.Try it:
enabled
Returns:
boolean - Element state.Try it:
Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| enabled | boolean | true | Enabled state to set. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.if (!element.enabled()) element.enabled(true);
Try it:
getPixelBounds
Returns:
anychart.math.Rect - Pixel bounds of the element.height
Returns:
number | string | undefined - Element's height setting.Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| height | number | string | null | null | Height settings for the element. | 
Returns:
anychart.core.ui.ScrollBar - Returns self for method chaining.Try it:
left
Returns:
number | string | undefined - Element's left bound setting.Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| left | number | string | null | null | Left bound setting for the element. | 
Returns:
anychart.core.ui.ScrollBar - Returns self for method chaining.Try it:
maxHeight
Returns:
number | string | null - Element's maximum height.Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| height | number | string | null | null | Maximum height to set. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.Try it:
maxWidth
Returns:
number | string | null - Element's maximum width.Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| width | number | string | null | null | Maximum width to set. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.Try it:
minHeight
Returns:
number | string | null - Element's minimum height.Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| height | number | string | null | null | Minimum height to set. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.Try it:
minWidth
Returns:
number | string | null - Element's minimum width.Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| width | number | string | null | null | Minimum width to set. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.Try it:
mouseOutOpacity
Returns:
number - The mouse out opacity.var mouseOutOpacity = scrollBar.mouseOutOpacity();
Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| opacity | number | 0.25 | Opacity to set. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.Try it:
mouseOverOpacity
Returns:
number - The mouse over opacity.var mouseOverOpacity = scrollBar.mouseOverOpacity();
Params:
| Name | Type | Description | 
|---|---|---|
| opacity | number | Opacity to set. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.Try it:
right
Returns:
number | string | undefined - Element's right bound setting.Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| right | number | string | null | null | Right bound setting for the element. | 
Returns:
anychart.core.ui.ScrollBar - Returns self for method chaining.Try it:
sliderFill
Returns:
anychart.graphics.vector.Fill | string - Slider fill settings.var sliderFill = scrollBar.sliderFill();
Params:
| Name | Type | Description | 
|---|---|---|
| color | anychart.graphics.vector.Fill | Array.<(anychart.graphics.vector.GradientKey|string)> | Color as an array, an object or string. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.Params:
| Name | Type | Description | 
|---|---|---|
| color | string | Color as a string. | 
| opacity | number | Color opacity. | 
Returns:
anychart.core.ui.ScrollBar - 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.ui.ScrollBar - Self instance for method chaining.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.ui.ScrollBar - Self instance for method chaining.Params:
| Name | Type | Description | 
|---|---|---|
| imageSettings | anychart.graphics.vector.Fill | Object with settings. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.sliderStroke
Returns:
anychart.graphics.vector.Stroke | string - Slider stroke settings.var sliderStroke = scrollBar.sliderStroke();
Params:
| Name | Type | Description | 
|---|---|---|
| color | anychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | null | Stroke settings. | 
| thickness | number | Line thickness. | 
| dashpattern | string | Controls the pattern of dashes and gaps used to stroke paths. | 
| lineJoin | string | anychart.graphics.vector.StrokeLineJoin | Line join style. | 
| lineCap | string | anychart.graphics.vector.StrokeLineCap | Line cap style. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.Try it:
top
Returns:
number | string | undefined - Element's top bound setting.Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| top | number | string | null | null | Top bound setting for the element. | 
Returns:
anychart.core.ui.ScrollBar - Returns self for method chaining.Try it:
width
Returns:
number | string | undefined - Element's width setting.Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| width | number | string | null | null | Width settings for the element. | 
Returns:
anychart.core.ui.ScrollBar - Returns self for method chaining.Try it:
zIndex
Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| zIndex | number | 0 | Value to set. | 
Returns:
anychart.core.ui.ScrollBar - Self instance for method chaining.Try it:
