ChartData constructor

ChartData({
  1. required dynamic xValue,
  2. required num yValue,
  3. Color? color,
  4. String? label,
  5. num? secondYValue,
  6. num? thirdYValue,
  7. num? size,
  8. num? open,
  9. num? close,
  10. num? low,
  11. num? high,
  12. num? volume,
  13. List<num>? boxValues,
})

Implementation

ChartData({
  required this.xValue,
  required this.yValue,
  this.color,
  this.label,
  this.secondYValue,
  this.thirdYValue,
  this.size,
  this.open,
  this.close,
  this.low,
  this.high,
  this.volume,
  this.boxValues,
});