CartesianChartPoint<D> constructor

CartesianChartPoint<D>({
  1. D? x,
  2. num? y,
  3. num? xValue,
  4. num? high,
  5. num? low,
  6. num? open,
  7. num? close,
  8. num? volume,
  9. num? maximum,
  10. num? minimum,
  11. num? upperQuartile,
  12. num? lowerQuartile,
  13. num? median,
  14. num? mean,
  15. List<num>? outliers,
  16. num? bubbleSize,
  17. num? cumulative,
})

Creating an argument constructor of CartesianChartPoint class.

Implementation

CartesianChartPoint({
  super.x,
  super.y,
  this.xValue,
  this.high,
  this.low,
  this.open,
  this.close,
  this.volume,
  this.maximum,
  this.minimum,
  this.upperQuartile,
  this.lowerQuartile,
  this.median,
  this.mean,
  this.outliers,
  this.bubbleSize,
  this.cumulative,
});