CartesianChartData constructor

CartesianChartData({
  1. required int yValue,
  2. dynamic x,
  3. num? y,
  4. dynamic xValue,
  5. num? secondSeriesYValue,
  6. num? thirdSeriesYValue,
  7. Color? pointColor,
  8. num? size,
  9. String? text,
  10. num? open,
  11. num? close,
  12. num? low,
  13. num? high,
  14. num? volume,
})

Implementation

CartesianChartData({
  required this.yValue,
  this.x,
  this.y,
  this.xValue,
  this.secondSeriesYValue,
  this.thirdSeriesYValue,
  this.pointColor,
  this.size,
  this.text,
  this.open,
  this.close,
  this.low,
  this.high,
  this.volume,
});