HighchartsChartScrollablePlotAreaOptions constructor

HighchartsChartScrollablePlotAreaOptions({
  1. double? minHeight,
  2. double? minWidth,
  3. double? opacity,
  4. double? scrollPositionX,
  5. double? scrollPositionY,
})

Options for a scrollable plot area. This feature provides a minimum size for the plot area of the chart. If the size gets smaller than this, typically on mobile devices, a native browser scrollbar is presented. This scrollbar provides smooth scrolling for the contents of the plot area, whereas the title, legend and unaffected axes are fixed.

API Docs: https://api.highcharts.com/highcharts/chart.scrollablePlotArea

Implementation

HighchartsChartScrollablePlotAreaOptions(
    {this.minHeight,
    this.minWidth,
    this.opacity,
    this.scrollPositionX,
    this.scrollPositionY});