S360fBarChart constructor

const S360fBarChart({
  1. required List<BarChartItem> items,
  2. required double maxValue,
  3. List<double> yAxisValues = const <double>[],
  4. String currencySymbol = '',
  5. Key? key,
  6. bool showValues = true,
  7. double width = double.infinity,
  8. double height = 200,
  9. EdgeInsets padding = const EdgeInsets.all(16),
  10. Color? backgroundColor,
})

Implementation

const S360fBarChart({
  required this.items,
  required this.maxValue,
  this.yAxisValues = const <double>[],
  this.currencySymbol = '',
  super.key,
  this.showValues = true,
  this.width = double.infinity,
  this.height = 200,
  this.padding = const EdgeInsets.all(16),
  this.backgroundColor,
});