StackedAreaSeries constructor

const StackedAreaSeries({
  1. Key? key,
  2. required List<List<XYDataPoint>> dataSeries,
  3. required List<Color> colors,
  4. double opacity = 0.7,
  5. bool showLines = true,
  6. double lineWidth = 2,
  7. bool smooth = false,
  8. double tension = 0.4,
})

Implementation

const StackedAreaSeries({
  super.key,
  required this.dataSeries,
  required this.colors,
  this.opacity = 0.7,
  this.showLines = true,
  this.lineWidth = 2,
  this.smooth = false,
  this.tension = 0.4,
});