ChartGroupBarDataItem constructor

ChartGroupBarDataItem({
  1. required Color color,
  2. required double value,
  3. required double x,
})

Implementation

ChartGroupBarDataItem({
  required this.color,
  required this.value,
  required this.x,
})  : _touch = _ChartGroupBarDataItemTouch(),
      _value = _ChartGroupBarDataItemValue();