From 584a5e431a74cd2a260648df0f9ded77d36369d1 Mon Sep 17 00:00:00 2001 From: Chris Rosenthal Date: Wed, 17 Apr 2024 11:14:03 -0700 Subject: [PATCH] Fixed scaleanchor warning --- dash/app.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/dash/app.py b/dash/app.py index dbbd0ec..a1c635d 100755 --- a/dash/app.py +++ b/dash/app.py @@ -959,13 +959,11 @@ def update_graph(tax_id, xaxis, yaxis, year_value, (len(outliers) / len(dff)), len(dff)), 'xaxis': { - 'scaleanchor': 'y' if xaxis == 'x' else None, 'title': xaxis, 'showgrid': True if xaxis == 'type_classification' else False, 'range': x_range }, 'yaxis': { - 'scaleanchor': 'x' if yaxis == 'y' else None, 'title': yaxis, 'showgrid': True if yaxis == 'type_classification' else False, 'range': y_range