FunnelChart constructor

const FunnelChart({
  1. Key? key,
  2. required ChartConfig config,
  3. ChartWidgetController? controller,
  4. ChartTheme? theme,
  5. double gap = 4,
  6. bool labelStages = true,
  7. bool sortDescending = true,
})

Implementation

const FunnelChart({
  super.key,
  required this.config,
  this.controller,
  this.theme,
  this.gap = 4,
  this.labelStages = true,
  this.sortDescending = true,
});