NicePolarChart constructor

const NicePolarChart({
  1. Key? key,
  2. required List<String> categories,
  3. required List<NicePolarSeries> series,
  4. double? maxValue,
  5. int rings = 4,
  6. bool showLegend = true,
  7. double size = 250,
})

Implementation

const NicePolarChart({
  super.key,
  required this.categories,
  required this.series,
  this.maxValue,
  this.rings = 4,
  this.showLegend = true,
  this.size = 250,
});