RadarChartPainter constructor

RadarChartPainter(
  1. List<int> ticks,
  2. List<String> features,
  3. List<List<num>> data,
  4. bool reverseAxis,
  5. TextStyle ticksTextStyle,
  6. TextStyle featuresTextStyle,
  7. Color outlineColor,
  8. Color axisColor,
  9. List<Color> graphColors,
  10. int sides,
  11. double fraction,
)

Implementation

RadarChartPainter(
  this.ticks,
  this.features,
  this.data,
  this.reverseAxis,
  this.ticksTextStyle,
  this.featuresTextStyle,
  this.outlineColor,
  this.axisColor,
  this.graphColors,
  this.sides,
  this.fraction,
);