DChartBarDataCustom constructor

DChartBarDataCustom({
  1. Color? color,
  2. required double value,
  3. required String label,
  4. TextStyle? valueStyle,
  5. bool? showValue,
  6. String? valueTooltip,
  7. Widget? labelCustom,
  8. Widget? valueCustom,
  9. Function? onTap,
  10. double? elevation,
  11. Color? splashColor,
  12. Color? shadowColor,
})

Implementation

DChartBarDataCustom({
  this.color,
  required this.value,
  required this.label,
  this.valueStyle,
  this.showValue,
  this.valueTooltip,
  this.labelCustom,
  this.valueCustom,
  this.onTap,
  this.elevation,
  this.splashColor,
  this.shadowColor,
});