DChartComboT constructor

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

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 = const ConfigRenderLine(),
  this.configRenderBar = const ConfigRenderBar(),
  this.configRenderPoint = const ConfigRenderPoint(),
  this.animationDuration = const Duration(milliseconds: 300),
  this.domainAxis,
  this.measureAxis,
  this.secondaryMeasureAxis,
  this.areaColor,
  this.fillPattern,
  this.fillColor,
  this.dashPattern,
  this.barLabelValue,
  this.flipVertical = false,
  this.layoutMargin,
  this.allowSliding = false,
  this.onUpdatedListener,
  this.onChangedListener,
});