diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2024-03-27 12:52:35 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2024-03-27 12:52:35 -0600 |
commit | f3fb5699b682124d10b997917aa4c04f8034438b (patch) | |
tree | 3c58af30d0c252f0c15d2c6b47611686294d7fe2 | |
parent | 836d196dc2cedbd6bcce1133eb596cb0c6bba021 (diff) |
variable length and spacing
-rw-r--r-- | api.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -91,7 +91,7 @@ def plot_data(x_data, y_data, std_dev_data, color_picker, labels, df, idx += 1 grey_shade = light_grey - (light_grey - dar_grey) * (idx / len(constant_line)) color = (grey_shade, grey_shade, grey_shade) - h = ax.axhline(y=val, linestyle='dashed', dashes=(idx,2) , color=color, label=name) + h = ax.axhline(y=val, linestyle='dashed', dashes=(idx+3,2) , color=color, label=name) handles.append(h) ax.grid(True,linestyle=(0,(1,5))) # enable_grid) |