UFunnelChart constructor

const UFunnelChart({
  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 height = "100%",
  7. String width = "100%",
  8. double animationDuration = 1000,
  9. DataLabelSettings dataLabelSettings = const DataLabelSettings(isVisible: true),
  10. Key? key,
})

Implementation

const UFunnelChart({
  required this.data,
  this.legendPosition = ChartLegendPosition.left,
  this.overflowMode = ChartOverflowMode.wrap,
  this.showLegend = true,
  this.enableTooltip = true,
  this.height = "100%",
  this.width = "100%",
  this.animationDuration = 1000,
  this.dataLabelSettings = const DataLabelSettings(isVisible: true),
  super.key,
});