UAreaChart constructor

const UAreaChart({
  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 smooth = true,
  8. bool showDots = false,
  9. double strokeWidth = 3,
})

Implementation

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