DChartComboT constructor

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

Numeric Combo Chart
also can use for single other type but cannot be set horizontal measure

  • only bar
  • only line
  • only scatter plot

Implementation

const DChartComboT({
  super.key,
  required this.groupList,
  this.animate = false,
  this.configRenderLine,
  this.configRenderBar,
  this.configRenderPoint,
  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,
});