DChartLineN constructor

const DChartLineN({
  1. Key? key,
  2. required List<NumericGroup> groupList,
  3. bool animate = false,
  4. ConfigRenderLine? configRenderLine,
  5. Duration animationDuration = const Duration(milliseconds: 300),
  6. DomainAxis? domainAxis,
  7. MeasureAxis? measureAxis,
  8. AreaColorN? areaColor,
  9. FillPatternN? fillPattern,
  10. FillColorN? fillColor,
  11. DashPatternN? dashPattern,
  12. InsideBarLabelStyleN? insideBarLabelStyle,
  13. OutsideBarLabelStyleN? outsideBarLabelStyle,
  14. BarLabelValueN? barLabelValue,
  15. BarLabelDecorator? barLabelDecorator,
  16. bool? flipVertical = false,
  17. LayoutMargin? layoutMargin,
  18. bool allowSliding = false,
})

Numeric Line Chart

Implementation

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