DIMITRIOS CHRYSOCHERIS
Results
2
issues of
DIMITRIOS CHRYSOCHERIS
I use python 3.9.13 . In case python 3.11 has not preinstalled `pyrubberband`, you may add it in requirements.
```python def do_something(chart): # Enable-Disable button feature myButton = chart.topbar['myButton'] myButton.disable() ... ... my_button.enable() # Set toggle select feature if myButton.is_toggle_selected: myButton.toggle_deselect() else: myButton.toggle_select() # Right-Click function feature def do_something_else(chart):...