DChartBarCustom constructor

const DChartBarCustom({
  1. Key? key,
  2. double? max,
  3. required List<DChartBarDataCustom> listData,
  4. bool? verticalDirection,
  5. BorderSide? domainLineStyle,
  6. BorderSide? measureLineStyle,
  7. bool? showDomainLine,
  8. bool? showMeasureLine,
  9. double? spaceBetweenItem,
  10. Alignment? valueAlign,
  11. TextStyle? domainLabelStyle,
  12. TextStyle? measureLabelStyle,
  13. bool? showDomainLabel,
  14. bool? showMeasureLabel,
  15. double? spaceDomainLabeltoChart,
  16. double? spaceMeasureLabeltoChart,
  17. bool? showLoading,
  18. Duration? loadingDuration,
  19. EdgeInsetsGeometry? valuePadding,
  20. BorderRadius? radiusBar,
  21. double? spaceDomainLinetoChart,
  22. double? spaceMeasureLinetoChart,
})

Implementation

const DChartBarCustom({
  Key? key,
  this.max,
  required this.listData,
  this.verticalDirection,
  this.domainLineStyle,
  this.measureLineStyle,
  this.showDomainLine,
  this.showMeasureLine,
  this.spaceBetweenItem,
  this.valueAlign,
  this.domainLabelStyle,
  this.measureLabelStyle,
  this.showDomainLabel,
  this.showMeasureLabel,
  this.spaceDomainLabeltoChart,
  this.spaceMeasureLabeltoChart,
  this.showLoading,
  this.loadingDuration,
  this.valuePadding,
  this.radiusBar,
  this.spaceDomainLinetoChart,
  this.spaceMeasureLinetoChart,
}) : super(key: key);