BarChart constructor

const BarChart({
  1. double barWidth = 16,
  2. bool showGrid = false,
  3. bool showLabels = true,
  4. bool showValues = false,
  5. bool horizontal = false,
  6. String? name,
  7. DslExpression? visible,
})

Implementation

const BarChart({
  this.barWidth = 16,
  this.showGrid = false,
  this.showLabels = true,
  this.showValues = false,
  this.horizontal = false,
  String? name,
  DslExpression? visible,
}) : super(name: name, visible: visible);