SimpleScatterPlotMatrixPoint constructor

const SimpleScatterPlotMatrixPoint({
  1. String? label,
  2. required List<double> values,
  3. String? group,
  4. Color? color,
})

Implementation

const SimpleScatterPlotMatrixPoint({
  this.label,
  required this.values,
  this.group,
  this.color,
});