Urs Utzinger
Urs Utzinger
I am trying to work with the examples first and then I would like to use the line plot functions in a Qt application.
Ok I think I figured it out. fastplotlib prefers wayland and I might have logged into X11 session.
> Nice work! I was taking a look at your repos, are you trying to create something like this https://github.com/uutzinger/SerialUI ? Curious to hear how fastplotlib has been working for...
> > > Nice work! I was taking a look at your repos, are you trying to create something like this https://github.com/uutzinger/SerialUI ? Curious to hear how fastplotlib has been...
[legend.py](https://github.com/user-attachments/files/22714772/legend.py) I proposed previously some changes the legend.py so that I can specify background color and I added a function so that the legend adjusts with custom update_using_camera call. In...
This is as far as I got with fastplotlib in my charting app: [Recording made for this response (on youtube)](https://youtu.be/fb8drk3pqsQ) The legend placing could be improved but runs with latest...
Works perfectly. No additional changes needed. I did: ``` self.fpl_fig[0, 0].frame.plane.material.color = FRAME_PLANE_COLOR self.fpl_fig[0, 0].frame.plane_color = FRAME_PLANE_COLOR self.fpl_fig[0, 0].title.face_color = FRAME_TITLE_COLOR self.fpl_fig[0, 0].title.outline_color = FRAME_TITLE_COLOR ```
ChatGPT help me out with: ``` # Set base plane color self.fpl_fig[0, 0].frame.plane.material.color = FRAME_PLANE_COLOR pc = getattr(self.fpl_fig[0, 0].frame, "plane_color", None) if pc is not None: idle_color = tuple(min(c *...