CustomBubbleChart constructor

const CustomBubbleChart({
  1. Key? key,
  2. required List<BubbleData> data,
  3. String? title,
  4. Color backgroundColor = Colors.white,
  5. Color gridColor = Colors.grey,
  6. TextStyle? textStyle,
  7. bool showGrid = true,
  8. bool showLabels = true,
  9. EdgeInsets padding = const EdgeInsets.all(50),
  10. double? minX,
  11. double? maxX,
  12. double? minY,
  13. double? maxY,
  14. double minBubbleSize = 5,
  15. double maxBubbleSize = 30,
  16. String? xAxisLabel,
  17. String? yAxisLabel,
})

Implementation

const CustomBubbleChart({
  super.key,
  required this.data,
  this.title,
  this.backgroundColor = Colors.white,
  this.gridColor = Colors.grey,
  this.textStyle,
  this.showGrid = true,
  this.showLabels = true,
  this.padding = const EdgeInsets.all(50),
  this.minX,
  this.maxX,
  this.minY,
  this.maxY,
  this.minBubbleSize = 5,
  this.maxBubbleSize = 30,
  this.xAxisLabel,
  this.yAxisLabel,
});