emma-uw

Results 16 comments of emma-uw

My app has a lot of early development rust on it at this point. Very excited for the next 2.0 release so I can finally rebuild it. Thanks for your...

@louisnw01 I think clear_markers missing self._update_markers() call after the clear.

@louisnw01 Hello, good sir. If I understood implementation correctly, **saveDrawings()** missing **type: d._type**, which leads to being unable to load them during **switch (d.type) case**. ``` saveDrawings = () =>...

Looks good on static charts, but I think there is a funny side effect where clicking and dragging anything inside the window (adjusting price scale etc) will move the whole...

It works well now, thank you

Hey, this has been posted previously somewhere around here and I used it since then. ``` def subscribe_click(chart, *, callback): js = ( 'function clickHandler(param) {' 'if (!param.point) {' 'return;'...

@Iss-in Hey. Hard to tell what you meant without looking into the implementation. But there is a new built-in function in version 2.0. Maybe it will work better for you?...

@Iss-in That's because replay is running synchronously, so until your loop isn't done - any other execution is blocked. You will need your replay function to run separately. Something like...

Thank you for the migration. Maybe add resize and remove methods as well? ``` def resize_pane(self, pane_index: int, height: int): self.run_script( f""" if ({self.id}.chart.panes().length > {pane_index}) {{ {self.id}.chart.panes()[{pane_index}].setHeight({height}); }} """...

Found out that line markers won't work anymore in the current variation. For my case I had to pass markers into **createLineSeries** for each line and **createSeriesMarkers** if said list...