ChartCompactRow constructor

const ChartCompactRow({
  1. Key? key,
  2. required String title,
  3. required double score,
  4. required List<String> labels,
  5. required List<double> data,
  6. VoidCallback? onTap,
  7. SpiderChartThemeData theme = const SpiderChartThemeData(),
  8. bool showTitle = true,
  9. bool showScore = true,
  10. bool showChart = true,
  11. bool showChartLabels = false,
})

Implementation

const ChartCompactRow({
  super.key,
  required this.title,
  required this.score,
  required this.labels,
  required this.data,
  this.onTap,
  this.theme = const SpiderChartThemeData(),
  this.showTitle = true,
  this.showScore = true,
  this.showChart = true,
  this.showChartLabels = false,
});