Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

add_2d_histogram_series function crashed without any log #1761

Closed
Hshafiee opened this issue May 11, 2022 · 1 comment
Closed

add_2d_histogram_series function crashed without any log #1761

Hshafiee opened this issue May 11, 2022 · 1 comment
Labels
category: plots related to plots state: ready Fixed/Added and will be present in an upcoming release type: bug bug

Comments

@Hshafiee
Copy link

Version: 1.6.2
Operating System: Windows 10

My Issue/Question

my app crashed without any log after use dpg.add_2d_histogram_series

Standalone, minimal, complete and verifiable example

# Here's some code anyone can copy and paste to reproduce your issue
import dearpygui.dearpygui as dpg

dpg.create_context()
dpg.create_viewport()
dpg.setup_dearpygui()

with dpg.window(label="Histogram APP"):
    with dpg.plot(label="Plot"):
        dpg.add_plot_legend()
        dpg.add_plot_axis(dpg.mvXAxis, tag="x_axis" )
        dpg.add_line_series([-2,-1,0,1,2], [0,1,2,3,4], label="Lines", parent="x_axis")


        dpg.add_2d_histogram_series([-2,-1,0,1,2], [0,1,2,3,4] , label='Histogram' , parent="x_axis")


dpg.show_viewport()
dpg.start_dearpygui()
dpg.destroy_context()
@Hshafiee Hshafiee added state: pending not addressed yet type: bug bug labels May 11, 2022
@hoffstadt hoffstadt added category: plots related to plots priority: high high priority and removed state: pending not addressed yet labels May 11, 2022
hoffstadt added a commit that referenced this issue May 11, 2022
@hoffstadt hoffstadt added state: ready Fixed/Added and will be present in an upcoming release and removed priority: high high priority labels May 11, 2022
@hoffstadt
Copy link
Owner

Fixed in next release.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
category: plots related to plots state: ready Fixed/Added and will be present in an upcoming release type: bug bug
Projects
None yet
Development

No branches or pull requests

2 participants