FlutterCirclePackChart constructor

const FlutterCirclePackChart({
  1. Key? key,
  2. List<CircleNode>? children,
  3. String? title,
  4. CirclePackChartController? controller,
  5. double minRadiusRatio = 0.20,
  6. double fontSizeFactor = 1.0,
  7. bool showValue = true,
  8. bool showLabels = true,
})

Implementation

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