KinChartSeries constructor

const KinChartSeries({
  1. required String name,
  2. required List<KinChartEntry> entries,
  3. Color? color,
  4. Gradient? gradient,
  5. KinChartLineStyle lineStyle = KinChartLineStyle.smooth,
  6. double strokeWidth = 2.0,
  7. bool showDots = true,
  8. double dotRadius = 3.5,
  9. bool showArea = false,
})

Implementation

const KinChartSeries({
  required this.name,
  required this.entries,
  this.color,
  this.gradient,
  this.lineStyle = KinChartLineStyle.smooth,
  this.strokeWidth = 2.0,
  this.showDots = true,
  this.dotRadius = 3.5,
  this.showArea = false,
});