DChartLineN constructor

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

Numeric Line Chart

Implementation

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