URadarChart constructor

const URadarChart({
  1. required List<UChartSeries> series,
  2. required List<String> axes,
  3. Key? key,
  4. String? title,
  5. bool filled = true,
  6. UChartStyle style = const UChartStyle(),
  7. double height = 280,
})

Implementation

const URadarChart({
  required this.series,
  required this.axes,
  super.key,
  this.title,
  this.filled = true,
  this.style = const UChartStyle(),
  this.height = 280,
});