UChartSeries constructor

const UChartSeries({
  1. required List<double> values,
  2. String? name,
  3. Color? color,
  4. List<Color>? gradient,
  5. List<Color>? pointColors,
  6. bool? filled,
  7. bool dashed = false,
})

Implementation

const UChartSeries({
  required this.values,
  this.name,
  this.color,
  this.gradient,
  this.pointColors,
  this.filled,
  this.dashed = false,
});