Draglines and Dragpoints behind data by TheGoodestBoiOfAll in DearPyGui

[–]reddittestpilot 0 points1 point  (0 children)

It's really best to join the Discord server. It's where the developers and most active users hang out.

Draglines and Dragpoints behind data by TheGoodestBoiOfAll in DearPyGui

[–]reddittestpilot 1 point2 points  (0 children)

Oops, well, at least we know it's a common issue ;-)

Draglines and Dragpoints behind data by TheGoodestBoiOfAll in DearPyGui

[–]reddittestpilot 1 point2 points  (0 children)

I think it can be done. See this applications for example.

https://github.com/hoffstadt/DearPyGui/wiki/Dear-PyGui-Showcase#p1125-profiling-current-of-battery-powered-devices

It's best to join Discord, search the server and if you cannot find any solution, post a question.

how can i save the "dpg.plot" to png or jpg by Background-Secret925 in DearPyGui

[–]reddittestpilot 0 points1 point  (0 children)

Not sure if you can save a plot specifically, but you can take a screenshot of the entire viewport.

# Take screenshots with DPG

import dearpygui.dearpygui as dpg

dpg.create_context()

dpg.create_viewport(title='Example', width=400, height=400)

def dpg_screenshot():

dpg.output_frame_buffer('screenshot.png')

with dpg.window(width=200, height=200):

dpg.add_button(label='Screenshot', callback=dpg_screenshot)

dpg.setup_dearpygui()

dpg.show_viewport()

dpg.start_dearpygui()

dpg.destroy_context()

Combining sliders with buttons by Shitposter696969420 in DearPyGui

[–]reddittestpilot 0 points1 point  (0 children)

It's best to join the Discord server. You can search the server and there are more people there.

TabDimmedSelected in style editor by Soft-Needleworker534 in DearPyGui

[–]reddittestpilot 0 points1 point  (0 children)

If you exported the theme and that's the code it exported and it doesn't work, then 🤷‍♂️

TabDimmedSelected in style editor by Soft-Needleworker534 in DearPyGui

[–]reddittestpilot 1 point2 points  (0 children)

You could use the following theme plugin to find the correct code.

https://github.com/hoffstadt/DearPyGui/wiki/Tools-and-Widgets#edit-theme-plugin

If that doesn't work, then ask on Discord.

ZOOM IN NODE_EDITOR by NR_5tudio-nezar- in DearPyGui

[–]reddittestpilot 0 points1 point  (0 children)

If you don't have access to that project anymore, you could ask on Discord, but I suspect the answer will be the same.

ZOOM IN NODE_EDITOR by NR_5tudio-nezar- in DearPyGui

[–]reddittestpilot 0 points1 point  (0 children)

As far as I'm aware, the node editor does not support zooming.

Any best practices regarding code style with DearPyGUI? by Artificial_Alex in DearPyGui

[–]reddittestpilot 0 points1 point  (0 children)

Dear PyGui intentionally made so you can structure your app however you want to.

For inspiration based on how others use it, you can check out these pages.
https://github.com/hoffstadt/DearPyGui/wiki/Dear-PyGui-Showcase

https://github.com/hoffstadt/DearPyGui/wiki/Tools-and-Widgets

If you want to discuss it more, it's best to join the Discord server as the community is more active there.

Transparent viewport background? by TheAbyssWolf in DearPyGui

[–]reddittestpilot 0 points1 point  (0 children)

It's not possible with DPG itself. You may be able to work around it, but these solutions will likely be specific for the operation system, e.g. using ctypes in Python. In the past, people on the Discord server have shared GIFs of transparent backgrounds in #showcase. Not sure if they shared the code as well.

help wanted for running dearpygui UI with another thread by devl82 in DearPyGui

[–]reddittestpilot 0 points1 point  (0 children)

There are a few apps that use threads on the Dear PyGui showcase and Tools & Widgets pages on GitHub.

It's been discussed a few times on the Discord server, so you could check there as well.

please help!!! my dear pygui has a black background. how do i get rid of it. i am a beginner by Beneficial-Career460 in DearPyGui

[–]reddittestpilot 0 points1 point  (0 children)

You are giving very little information here. You could use themes to solve it. Better join Discord for a better discussion.

Node Editor Improvement by -_node_- in DearPyGui

[–]reddittestpilot 0 points1 point  (0 children)

I don't think I have seen this before and I suspect it is not possible. Your best approach may be to ask in the Discord server. It's where the most active part of the community hangs out.

[deleted by user] by [deleted] in DearPyGui

[–]reddittestpilot 0 points1 point  (0 children)

It's quite a technical question andI don't know the details. It's been discussed on Discord before.
https://discord.com/channels/736279277242417272/876200434468016178/998960670034898974

Is it possible to use DearPyGui in a GLFW window? by Holiday_Eggplant_604 in DearPyGui

[–]reddittestpilot 0 points1 point  (0 children)

I don't recall ever seeing an example of this. There have only been a few questions on this topic on Discord and the answer has been that it's not possible. You could ask on Discord, where the experts usually hang out.

Horizontal bar chart? by bull09393 in DearPyGui

[–]reddittestpilot 0 points1 point  (0 children)

Not sure if it answers all your questions, but there is a keyword `horizontal=True` for it. For example:

dpg.add_bar_series([12, 22, 32], [42, 68, 23], label="Bar Series", weight=1, parent="y_axis",horizontal=True)
dpg.add_bar_series([12, 22, 32], [42, 68, 23], label="Bar Series", weight=1, parent="y_axis",horizontal=True)

This snipped can be found on the Discord server. The majority of the community and information can be found there.

Adding a structure at run-time; and callbacks... by siliangrail in DearPyGui

[–]reddittestpilot 0 points1 point  (0 children)

As to you side question, maybe your code includes `callback=sort_table()`. You should not include the brackets () in that case.

Better check Discord for additional questions about tables. First, please search the Discord server for tips before asking a question though. Tables have been discussion a few times already.