SlidableLineChartThemeData<E extends Enum> constructor

const SlidableLineChartThemeData<E extends Enum>({
  1. List<CoordinatesStyle<E>>? coordinatesStyleList,
  2. TextStyle? axisLabelStyle,
  3. Color? axisLineColor,
  4. double? axisLineWidth,
  5. Color? gridLineColor,
  6. double? gridLineWidth,
  7. DrawGridLineType? drawGridLineType,
  8. DrawGridLineStyle? drawGridLineStyle,
  9. double? dashedGridLineWidth,
  10. double? dashedGridLineGap,
  11. bool? showTapArea,
  12. double? lineWidth,
  13. TextStyle? displayValueTextStyle,
  14. double? displayValueMarginBottom,
  15. double? indicatorMarginTop,
  16. double? indicatorRadius,
  17. Color? checkBackgroundColor,
  18. Color? closeBackgroundColor,
  19. Color? checkColor,
  20. Color? closeColor,
  21. double? smooth,
  22. double? disabledOpacity,
})

Create a SlidableLineChartThemeData that's used to configure a SlidableLineChartTheme.

Implementation

const SlidableLineChartThemeData({
  this.coordinatesStyleList,
  this.axisLabelStyle,
  this.axisLineColor,
  this.axisLineWidth,
  this.gridLineColor,
  this.gridLineWidth,
  this.drawGridLineType,
  this.drawGridLineStyle,
  this.dashedGridLineWidth,
  this.dashedGridLineGap,
  this.showTapArea,
  this.lineWidth,
  this.displayValueTextStyle,
  this.displayValueMarginBottom,
  this.indicatorMarginTop,
  this.indicatorRadius,
  this.checkBackgroundColor,
  this.closeBackgroundColor,
  this.checkColor,
  this.closeColor,
  this.smooth,
  this.disabledOpacity,
})  : assert(
        smooth == null || (smooth >= 0.0 && smooth <= 1.0),
        'smooth($smooth) must be between [0-1]',
      ),
      assert(
        disabledOpacity == null ||
            (disabledOpacity >= 0.0 && disabledOpacity <= 1.0),
        'disabledOpacity($disabledOpacity) must be between [0-1]',
      );