CustomBubbleChart constructor
const
CustomBubbleChart({
- Key? key,
- required List<
BubbleData> data, - String? title,
- Color backgroundColor = Colors.white,
- Color gridColor = Colors.grey,
- TextStyle? textStyle,
- bool showGrid = true,
- bool showLabels = true,
- EdgeInsets padding = const EdgeInsets.all(50),
- double? minX,
- double? maxX,
- double? minY,
- double? maxY,
- double minBubbleSize = 5,
- double maxBubbleSize = 30,
- String? xAxisLabel,
- 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,
});