BarChart constructor

const BarChart({
  1. Key? key,
  2. required List<FastChartData> data,
  3. double separatorWidth = 6.0,
  4. double separatorPadding = 8.0,
  5. Color? seperatorColor,
  6. double barHeight = 8.0,
  7. double barPadding = 6.0,
  8. Color? labelsBackgroundColor,
  9. Color? chartBackgroundColor,
})

Implementation

const BarChart({
  super.key,
  required this.data,
  this.separatorWidth = 6.0,
  this.separatorPadding = 8.0,
  this.seperatorColor,
  this.barHeight = 8.0,
  this.barPadding = 6.0,
  this.labelsBackgroundColor,
  this.chartBackgroundColor,
});