ChartBar constructor

const ChartBar({
  1. Key? key,
  2. required Size size,
  3. required List<ChartBarBeanX> xDialValues,
  4. Duration? duration,
  5. BaseBean? baseBean,
  6. Color? backgroundColor,
  7. double rectWidth = 20,
  8. TouchSet? touchSet,
})

Implementation

const ChartBar({
  Key? key,
  required this.size,
  required this.xDialValues,
  this.duration,
  this.baseBean,
  this.backgroundColor,
  this.rectWidth = 20,
  this.touchSet,
}) : super(key: key);