FlutterCirclePackChart constructor

const FlutterCirclePackChart({
  1. Key? key,
  2. required CircleNode root,
  3. FlutterCirclePackChartController? controller,
  4. double minRadiusRatio = 0.20,
  5. double fontSizeFactor = 1.0,
  6. bool showValue = true,
  7. bool showLabels = true,
})

Implementation

const FlutterCirclePackChart({
  super.key,
  required this.root,
  this.controller,
  this.minRadiusRatio = 0.20,
  this.fontSizeFactor = 1.0,
  this.showValue = true,
  this.showLabels = true,
});