PolarChartData constructor

const PolarChartData({
  1. ChartAnimation? animation,
  2. String? title,
  3. String? subtitle,
  4. List<String> axisLabels = const [],
  5. double? maxValue,
  6. double minValue = 0.0,
  7. int tickCount = 5,
})

Creates polar chart data.

Implementation

const PolarChartData({
  super.animation,
  super.title,
  super.subtitle,
  this.axisLabels = const [],
  this.maxValue,
  this.minValue = 0.0,
  this.tickCount = 5,
});