Skip to content
6 changes: 4 additions & 2 deletions lib/pages/summation/team_overview.dart
Original file line number Diff line number Diff line change
Expand Up @@ -305,13 +305,15 @@ class _TeamOverviewPageState extends State<TeamOverviewPage> {
valueBar: [
RadialValueBar(
valueBarThickness: 40,
value: entry.value,
value:
selectedTeamQuestionAnswerAverages[entry.key] ?? 0,
color: percentileColor,
)
],
),
Text(
entry.value.toStringAsFixed(2),
(selectedTeamQuestionAnswerAverages[entry.key] ?? 0)
.toStringAsFixed(2),
style: TextStyle(
color: percentileColor,
fontWeight: FontWeight.bold,
Expand Down