LimitAnnotation constructor

LimitAnnotation({
  1. bool fixed = true,
  2. int yAxisPosition = 0,
  3. double? minZoomVisible,
  4. double? maxZoomVisible,
  5. required num limit,
  6. Color color = Colors.red,
  7. double strokeWidth = 1,
})

Implementation

LimitAnnotation({
  super.fixed = true,
  super.yAxisPosition = 0,
  super.minZoomVisible,
  super.maxZoomVisible,
  required this.limit,
  this.color = Colors.red,
  this.strokeWidth = 1,
});