UStepLineChart constructor

const UStepLineChart({
  1. required List<UChartSeries> series,
  2. Key? key,
  3. List<String>? categories,
  4. String? title,
  5. UChartStyle style = const UChartStyle(),
  6. double height = 260,
  7. bool filled = false,
  8. bool showDots = false,
  9. double strokeWidth = 3,
})

Implementation

const UStepLineChart({
  required this.series,
  super.key,
  this.categories,
  this.title,
  this.style = const UChartStyle(),
  this.height = 260,
  this.filled = false,
  this.showDots = false,
  this.strokeWidth = 3,
});