ChartPiePainter constructor

ChartPiePainter(
  1. List<ChartPieBean> chartBeans, {
  2. double value = 1,
  3. double globalR = 0,
  4. double centerR = 0,
  5. double divisionWidth = 0,
  6. Color centerColor = defaultColor,
  7. AssistTextShowType assistTextShowType = AssistTextShowType.None,
  8. ArrowBegainLocation arrowBegainLocation = ArrowBegainLocation.Top,
  9. Color assistBGColor = defaultColor,
  10. int decimalDigits = 0,
})

Implementation

ChartPiePainter(
  this.chartBeans, {
  this.value = 1,
  this.globalR = 0,
  this.centerR = 0,
  this.divisionWidth = 0,
  this.centerColor = defaultColor,
  this.assistTextShowType = AssistTextShowType.None,
  this.arrowBegainLocation = ArrowBegainLocation.Top,
  this.assistBGColor = defaultColor,
  this.decimalDigits = 0,
});