VelocityLineChart constructor

const VelocityLineChart({
  1. Key? key,
  2. required List<LineChartPoint> series1,
  3. List<LineChartPoint>? series2,
  4. String ySuffix = '',
  5. String yAppendix = '',
  6. double? minX,
  7. double? maxX,
  8. double? minY,
  9. double? maxY,
})

Implementation

const VelocityLineChart({
  Key? key,
  required this.series1,
  this.series2,
  this.ySuffix = '',
  this.yAppendix = '',
  this.minX,
  this.maxX,
  this.minY,
  this.maxY,
}) : super(key: key);