diff --git a/templates/partials/svg_line_graph.html b/templates/partials/svg_line_graph.html
index a72a7c3..b94722a 100644
--- a/templates/partials/svg_line_graph.html
+++ b/templates/partials/svg_line_graph.html
@@ -9,14 +9,6 @@
{% endfor %}
{% endmacro %}
-{% macro path_best_fit(best_fit_points, vb_height) %}
-{% for value, position in best_fit_points %}
-{% set x = (position * vb_width)+margin %}
-{% set y = (vb_height - value)+margin %}
-{% if loop.first %}M{{ x | int }} {{ y | int }}{% else %} L{{ x | int }} {{ y | int }}{% endif %}
-{% endfor %}
-{% endmacro %}
-
{% macro circles_with_skipped_points(data_points, color) %}
{% for i in range(data_points|length) %}
{% set current_value, current_position = data_points[i] %}
@@ -72,19 +64,6 @@
{% endfor %}
-