Vladimir Ein

Results 304 comments of Vladimir Ein

`shaded=True` makes `line_series` behave much the same way as `shade_series`: it fills the space between the line and the X axis. It doesn't suit for drawing arbitrary filled polygons. I...

Well.. turns out that #2045 ruins the idea of using `draw_polygon` to render a filled polygon.

Another option is `add_area_series` in place of `add_line_series`: ```py dpg.add_area_series(x_data, y_data, tag="line-series", fill=(255, 255, 255, 255)) ``` Works just fine.

This is being worked on. No ETA yet but we'll try to fix it soon.

Looks like some kind of a leak. Some users reported leaks on Intel GPUs before, though the leaks were happening while application was in minimized state rather than with a...

Please don't click the link in the notification you received for the previous comment. It's a scam.

Please read [the docs on how to use non-ASCII characters](https://dearpygui.readthedocs.io/en/latest/documentation/fonts.html). The euro sign is U+20AC, which is outside of ASCII range and thus not loaded by default. You need to...

Please don't click the link in the notification you received for the previous comment. It's a scam.

Unfortunately ImNodes, the backbone of DPG node editor, does not support pins on top/bottom edges. Even at the left/right side, it takes quite an effort to place pins at specific...

Just FYI, here's an example of how one can place dots on the left and right side at the same level: https://github.com/my1e5/dpg-examples/blob/main/misc/multiple_node_attributes_one_line.py Not sure how much effort it would be...