legendLabel method

String legendLabel(
  1. PieChartItem item
)

Implementation

String legendLabel(PieChartItem item) {
  return '${(item.weight * 100 / totalWeight).round()}% ${item.shortLabel}';
}