mirror of
https://github.com/aljazceru/hummingbot-dashboard.git
synced 2025-12-22 15:54:24 +01:00
3 lines
121 B
Python
3 lines
121 B
Python
def add_traces_to_fig(fig, traces, row=1, col=1):
|
|
for trace in traces:
|
|
fig.add_trace(trace, row=row, col=col) |