UScatterChart constructor

const UScatterChart({
  1. required List<UPointSeries> data,
  2. Key? key,
  3. String? title,
  4. UChartStyle style = const UChartStyle(),
  5. double height = 260,
  6. double dotRadius = 5,
})

Implementation

const UScatterChart({
  required this.data,
  super.key,
  this.title,
  this.style = const UChartStyle(),
  this.height = 260,
  this.dotRadius = 5,
});