UBubbleChart constructor

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

Implementation

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