RadialChartWidget constructor

const RadialChartWidget({
  1. Key? key,
  2. required List<ChartDataSet> dataSets,
  3. ChartTheme? theme,
  4. double lineWidth = 3.0,
  5. bool showPoints = true,
  6. bool showGrid = true,
  7. bool showLabel = true,
  8. String? title,
  9. String? subtitle,
  10. bool useGlassmorphism = false,
  11. bool useNeumorphism = false,
  12. bool isLoading = false,
  13. bool isError = false,
  14. String? errorMessage,
  15. ChartPointCallback? onPointTap,
  16. ChartPointHoverCallback? onPointHover,
})

Implementation

const RadialChartWidget({
  super.key,
  required this.dataSets,
  this.theme,
  this.lineWidth = 3.0,
  this.showPoints = true,
  this.showGrid = true,
  this.showLabel = true,
  this.title,
  this.subtitle,
  this.useGlassmorphism = false,
  this.useNeumorphism = false,
  this.isLoading = false,
  this.isError = false,
  this.errorMessage,
  this.onPointTap,
  this.onPointHover,
});