StepLineChartPainter constructor

const StepLineChartPainter({
  1. required ChartTheme theme,
  2. required List<ChartDataSet> dataSets,
  3. bool showGrid = true,
  4. bool showAxis = true,
  5. bool showLabel = true,
  6. double lineWidth = 3.0,
  7. bool showArea = true,
  8. bool showPoints = true,
  9. double animationProgress = 1.0,
  10. ChartInteractionResult? selectedPoint,
  11. ChartInteractionResult? hoveredPoint,
})

Implementation

const StepLineChartPainter({
  required super.theme,
  required super.dataSets,
  super.showGrid,
  super.showAxis,
  super.showLabel,
  this.lineWidth = 3.0,
  this.showArea = true,
  this.showPoints = true,
  this.animationProgress = 1.0,
  this.selectedPoint,
  this.hoveredPoint,
});