BarBean constructor

BarBean({
  1. String? name,
  2. TextStyle? xTitleStyle,
  3. bool isDrawX = false,
  4. double lineWidth = 2,
  5. double pointRadius = 0,
  6. bool isCurve = false,
  7. List<BarDataBean>? points,
  8. Color lineColor = Colors.purple,
  9. List<Color>? colors,
  10. bool placehoderImageBreak = true,
  11. Image? placehoderImage,
})

create BrnBarBean

Implementation

BarBean(
    {this.name,
    this.xTitleStyle,
    this.isDrawX = false,
    this.lineWidth = 2,
    this.pointRadius = 0,
    this.isCurve = false,
    this.points,
    this.lineColor = Colors.purple,
    this.colors,
    this.placehoderImageBreak = true,
    this.placehoderImage});