update docs

This commit is contained in:
louisnw
2024-05-29 19:02:03 +01:00
parent 8ff980abfc
commit 19a4f5f114
7 changed files with 12 additions and 13 deletions

View File

@ -1,7 +1,7 @@
# Alternative GUI's
## PyQt5 / PySide6
## PyQt6 / PyQt5 / PySide6
```python
import pandas as pd

View File

@ -36,7 +36,7 @@ def on_timeframe_selection(chart):
if new_data.empty:
return
# The symbol has not changed, so we want to re-render the drawings.
chart.set(new_data, render_drawings=True)
chart.set(new_data, keep_drawings=True)
if __name__ == '__main__':