BubbleChartPainter constructor

const BubbleChartPainter({
  1. required ChartTheme theme,
  2. required List<BubbleDataSet> bubbleDataSets,
  3. bool showGrid = true,
  4. bool showAxis = true,
  5. bool showLabel = true,
  6. double minBubbleSize = 5.0,
  7. double maxBubbleSize = 30.0,
  8. double animationProgress = 1.0,
  9. ChartInteractionResult? selectedBubble,
  10. ChartInteractionResult? hoveredBubble,
})

Creates a bubble chart painter.

Implementation

const BubbleChartPainter({
  required super.theme,
  required this.bubbleDataSets,
  super.showGrid,
  super.showAxis,
  super.showLabel,
  this.minBubbleSize = 5.0,
  this.maxBubbleSize = 30.0,
  this.animationProgress = 1.0,
  this.selectedBubble,
  this.hoveredBubble,
}) : super(dataSets: const []);