JavaScript/jQuery Chart - scrollBar
Specifies the settings of the scroll bar.
Type:
The scroll bar allows a user to pan the chart. To use it, you need to enable zooming and panning in your chart.
By default, the scroll bar is hidden. To make it visible, set the visible field of the scrollBar object to true. Using other fields of this object you can adjust the scroll bar appearance settings, including color, width and opacity.
color
Type:
Default Value: 'gray'
This property supports the following colors:
- Hexadecimal colors
- RGB colors
- RGBA colors
- Predefined/cross-browser color names
- Predefined SVG colors
- Paint server address
position
Type:
Default Value: 'top'
Depending on whether the chart is rotated or not, this property accepts different values. In a non-rotated chart, you can assign either 'top' or 'bottom' to this property. In a rotated chart, this property accepts either 'left' or 'right'.
visible
Type:
Default Value: false
NOTE
Making the scroll bar visible can be useful only if panning is enabled in your chart.
Feedback