DChartBarO constructor

const DChartBarO({
  1. Key? key,
  2. required List<OrdinalGroup> groupList,
  3. bool animate = false,
  4. ConfigRenderBar? configRenderBar,
  5. Duration animationDuration = const Duration(milliseconds: 300),
  6. DomainAxis? domainAxis,
  7. MeasureAxis? measureAxis,
  8. AreaColorO? areaColor,
  9. FillPatternO? fillPattern,
  10. FillColorO? fillColor,
  11. DashPatternO? dashPattern,
  12. InsideBarLabelStyleO? insideBarLabelStyle,
  13. OutsideBarLabelStyleO? outsideBarLabelStyle,
  14. BarLabelValueO? barLabelValue,
  15. BarLabelDecorator? barLabelDecorator,
  16. bool vertical = true,
  17. bool? flipVertical,
  18. LayoutMargin? layoutMargin,
  19. bool allowSliding = false,
})

Ordinal Bar Chart

Implementation

const DChartBarO({
  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.vertical = true,
  this.flipVertical,
  this.layoutMargin,
  this.allowSliding = false,
});