HighchartsScrollbarOptions constructor

HighchartsScrollbarOptions({
  1. String? barBackgroundColor,
  2. String? barBorderColor,
  3. double? barBorderRadius,
  4. double? barBorderWidth,
  5. String? buttonArrowColor,
  6. String? buttonBackgroundColor,
  7. String? buttonBorderColor,
  8. double? buttonBorderRadius,
  9. double? buttonBorderWidth,
  10. bool? buttonsEnabled,
  11. bool? enabled,
  12. double? height,
  13. bool? liveRedraw,
  14. double? margin,
  15. double? minWidth,
  16. String? rifleColor,
  17. bool? showFull,
  18. String? trackBackgroundColor,
  19. String? trackBorderColor,
  20. double? trackBorderRadius,
  21. double? trackBorderWidth,
  22. double? zIndex,
})

The scrollbar is a means of panning over the X axis of a stock chart. Scrollbars can also be applied to other types of axes.

API Docs: https://api.highcharts.com/highstock/scrollbar

Implementation

HighchartsScrollbarOptions(
    {this.barBackgroundColor,
    this.barBorderColor,
    this.barBorderRadius,
    this.barBorderWidth,
    this.buttonArrowColor,
    this.buttonBackgroundColor,
    this.buttonBorderColor,
    this.buttonBorderRadius,
    this.buttonBorderWidth,
    this.buttonsEnabled,
    this.enabled,
    this.height,
    this.liveRedraw,
    this.margin,
    this.minWidth,
    this.rifleColor,
    this.showFull,
    this.trackBackgroundColor,
    this.trackBorderColor,
    this.trackBorderRadius,
    this.trackBorderWidth,
    this.zIndex});