LineChart constructor

const LineChart({
  1. ColorToken? color,
  2. double lineWidth = 2,
  3. bool showGrid = false,
  4. bool showLabels = true,
  5. bool showDots = true,
  6. bool curved = false,
  7. bool filled = false,
  8. double fillOpacity = 0.3,
  9. double? minY,
  10. double? maxY,
  11. String? name,
  12. DslExpression? visible,
})

Implementation

const LineChart({
  this.color,
  this.lineWidth = 2,
  this.showGrid = false,
  this.showLabels = true,
  this.showDots = true,
  this.curved = false,
  this.filled = false,
  this.fillOpacity = 0.3,
  this.minY,
  this.maxY,
  String? name,
  DslExpression? visible,
}) : super(name: name, visible: visible);