DChartBarT constructor

const DChartBarT({
  1. Key? key,
  2. required List<TimeGroup> groupList,
  3. bool animate = false,
  4. ConfigRenderBar? configRenderBar,
  5. Duration animationDuration = const Duration(milliseconds: 300),
  6. DomainAxis? domainAxis,
  7. MeasureAxis? measureAxis,
  8. AreaColorT? areaColor,
  9. FillPatternT? fillPattern,
  10. FillColorT? fillColor,
  11. DashPatternT? dashPattern,
  12. InsideBarLabelStyleT? insideBarLabelStyle,
  13. OutsideBarLabelStyleT? outsideBarLabelStyle,
  14. BarLabelValueT? barLabelValue,
  15. BarLabelDecorator? barLabelDecorator,
  16. bool? flipVertical = false,
  17. LayoutMargin? layoutMargin,
  18. bool allowSliding = false,
})

Time Bar Chart

Implementation

const DChartBarT({
  super.key,
  required this.groupList,
  this.animate = false,
  this.configRenderBar,
  this.animationDuration = const Duration(milliseconds: 300),
  this.domainAxis,
  this.measureAxis,
  this.areaColor,
  this.fillPattern,
  this.fillColor,
  this.dashPattern,
  this.insideBarLabelStyle,
  this.outsideBarLabelStyle,
  this.barLabelValue,
  this.barLabelDecorator,
  this.flipVertical = false,
  this.layoutMargin,
  this.allowSliding = false,
});