diff --git a/lib/presentation/views/graph_view.dart b/lib/presentation/views/graph_view.dart index 9fa4e0a..a6e6042 100644 --- a/lib/presentation/views/graph_view.dart +++ b/lib/presentation/views/graph_view.dart @@ -98,18 +98,7 @@ class _GraphViewState extends State { // The jitter is centered around zero by subtracting playerCount ~/ 2 from the player index i. : cumulativeScores[i][j - 1] + (i - playerCount ~/ 2) * jitterStep ), - ); /*List.generate( - cumulativeScores[i].length, - (j) => ( - j, - j == 0 - ? 0 // In Runde 0 immer 0 Punkte - : - // Add a small jitter to the cumulative scores to prevent overlapping data points in the graph. - // The jitter is centered around zero by subtracting playerCount ~/ 2 from the player index i. - cumulativeScores[i][j] + (i - playerCount ~/ 2) * jitterStep - ), - );*/ + ); /// Create a LineSeries for the player /// The xValueMapper maps the round number, and the yValueMapper maps the cumulative score.