DChartLineT constructor

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

Time Line Chart

Implementation

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