diff options
| author | user <user@node5.net> | 2024-03-23 23:53:05 +0100 |
|---|---|---|
| committer | user <user@node5.net> | 2024-03-23 23:53:05 +0100 |
| commit | 26dd90a4fa2c0dc89e6689d49a71206f71eb1dcf (patch) | |
| tree | 843f37a6f635711478016baf1ace155edfac67c7 /src/ssh_node5_net.py | |
| parent | 3ee22203c2fda75d7cae3f3ad2199e5676eca9c3 (diff) | |
fix interlace colors
Diffstat (limited to 'src/ssh_node5_net.py')
| -rw-r--r-- | src/ssh_node5_net.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ssh_node5_net.py b/src/ssh_node5_net.py index 3b5cdac..77bd36b 100644 --- a/src/ssh_node5_net.py +++ b/src/ssh_node5_net.py @@ -76,7 +76,7 @@ def index(): histogram_chartjs = json.dumps([{ 'label': str(ip), 'data': data, - 'backgroundColor': f'hsl({360 if index % 2 == 0 else 0 - index / len(all_dates) * 360}, 50%, 50%)', + 'backgroundColor': f'hsl({abs(360 if index%2 else 0 - (index / len(by_ip) * 360))}, 50%, 50%)', 'fill': 'start' } for index, (ip, data) in enumerate(by_ip.items())]) |
