From ee9d510316d141f7fb1aff639fbc7b9b7f379319 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Ha=C3=9Fel?= Date: Tue, 25 Feb 2025 10:18:55 +0100 Subject: [PATCH] removed distance filter from Graph --- src/main/java/de/ph87/data/series/graph/Graph.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/de/ph87/data/series/graph/Graph.java b/src/main/java/de/ph87/data/series/graph/Graph.java index 2c4cf2d..06316d6 100644 --- a/src/main/java/de/ph87/data/series/graph/Graph.java +++ b/src/main/java/de/ph87/data/series/graph/Graph.java @@ -121,7 +121,7 @@ public class Graph { Point last = null; g.setColor(Color.RED); for (final Point current : points) { - if (last != null && current.x - last.x <= minuteScale * 2) { + if (last != null) { g.drawLine(last.x, last.y, current.x, current.y); } last = current;