DChartComboN constructor

const DChartComboN({
  1. Key? key,
  2. required List<NumericGroup> 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. AreaColorN? areaColor,
  11. FillPatternN? fillPattern,
  12. FillColorN? fillColor,
  13. DashPatternN? dashPattern,
  14. InsideBarLabelStyleN? insideBarLabelStyle,
  15. OutsideBarLabelStyleN? outsideBarLabelStyle,
  16. BarLabelValueN? barLabelValue,
  17. BarLabelDecorator? barLabelDecorator,
  18. LayoutMargin? layoutMargin,
  19. 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 DChartComboN({
  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.layoutMargin,
  this.allowSliding = false,
});