SimpleRangeChartData constructor

const SimpleRangeChartData({
  1. required String label,
  2. required double min,
  3. required double max,
  4. double? value,
  5. Color? color,
  6. Color? markerColor,
})

Implementation

const SimpleRangeChartData({
  required this.label,
  required this.min,
  required this.max,
  this.value,
  this.color,
  this.markerColor,
});