BubbleChartPainter constructor
const
BubbleChartPainter({
- required ChartTheme theme,
- required List<
BubbleDataSet> bubbleDataSets, - bool showGrid = true,
- bool showAxis = true,
- bool showLabel = true,
- double minBubbleSize = 5.0,
- double maxBubbleSize = 30.0,
- double animationProgress = 1.0,
- ChartInteractionResult? selectedBubble,
- 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 []);