Vladimir Ein
Vladimir Ein
Will it be easier to store current axis limits in a Python field (maybe a global variable) instead of calling `get_axis_limits`? I bet the issue you're seeing happens because a...
Probably caused by the same precision loss on 32-bit floats. See this comment for details: https://github.com/hoffstadt/DearPyGui/issues/2157#issuecomment-1679572308
Alternatively, we could add `selected` to the node or link config (and change it with `configure_item`). Then, use `ImNodes::SelectNode()` to change it, and `ImNodes::IsNodeSelected()` to update it from ImNodes... However,...
Not yet, but you can implement a custom legend and then use `is_item_shown` to query the status of a series. Here is an example, feel free to use under MIT...
Trying to figure out a proper solution for this issue. Did I get it right that you need the following behavior? 1. Be able to specify the range on an...
As usual, I have a fix for it, going to open a PR after #2275 gets done.
Disclaimer: I don't have any experience with Tkinter, and what's worse, I don't have tkinter itself (on Windows, it's optional), so can't really test your code. Nevertheless, here are some...
Looks like a duplicate of #1903 and #2057.
Most probably caused by this piece in `DearPyGui::draw_custom_series` (I didn't check it though): ```cpp mvSubmitCallback([&, mouse, mouse2]() { ... mvAddCallback(item.config.callback, item.uuid, appData, item.config.user_data); ``` When the series widget is deleted,...
I haven't checked it but most probably it is yet another manifestation of [Dear ImGui issue 7543](https://github.com/ocornut/imgui/issues/7543) - see [my comment](https://github.com/ocornut/imgui/issues/7543#issuecomment-2466455662) in that ticket. If my hypothesis is true, nothing...