URadialBarChart constructor

const URadialBarChart({
  1. required List<ChartData> data,
  2. ChartLegendPosition legendPosition = ChartLegendPosition.left,
  3. ChartOverflowMode overflowMode = ChartOverflowMode.wrap,
  4. bool showLegend = true,
  5. bool enableTooltip = true,
  6. String radius = "100%",
  7. String innerRadius = "50%",
  8. double animationDuration = 1000,
  9. Color trackColor = Colors.grey,
  10. double trackOpacity = 0.3,
  11. DataLabelSettings dataLabelSettings = const DataLabelSettings(isVisible: true),
  12. Key? key,
})

Implementation

const URadialBarChart({
  required this.data,
  this.legendPosition = ChartLegendPosition.left,
  this.overflowMode = ChartOverflowMode.wrap,
  this.showLegend = true,
  this.enableTooltip = true,
  this.radius = "100%",
  this.innerRadius = "50%",
  this.animationDuration = 1000,
  this.trackColor = Colors.grey,
  this.trackOpacity = 0.3,
  this.dataLabelSettings = const DataLabelSettings(isVisible: true),
  super.key,
});