From 0ad4b5f2b78e199dae017fdb6cb80fca39102e5a Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Thu, 11 Nov 2021 19:21:33 +0100 Subject: Rename sketch.py to gui.py, move tests in test/ directory --- tests/dearpygui/test3_custom_axis_labels.py | 34 +++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 tests/dearpygui/test3_custom_axis_labels.py (limited to 'tests/dearpygui/test3_custom_axis_labels.py') diff --git a/tests/dearpygui/test3_custom_axis_labels.py b/tests/dearpygui/test3_custom_axis_labels.py new file mode 100644 index 0000000..be6b80b --- /dev/null +++ b/tests/dearpygui/test3_custom_axis_labels.py @@ -0,0 +1,34 @@ +import dearpygui.dearpygui as dpg + +dpg.create_context() + +with dpg.window(label="Tutorial", width=400, height=400): + with dpg.group(horizontal=True): + dpg.add_button(label="fit y", callback=lambda: dpg.fit_axis_data("y_axis")) + dpg.add_button(label="unlock x limits", callback=lambda: dpg.set_axis_limits_auto("x_axis")) + dpg.add_button(label="unlock y limits", callback=lambda: dpg.set_axis_limits_auto("y_axis")) + dpg.add_button(label="print limits x", callback=lambda: print(dpg.get_axis_limits("x_axis"))) + dpg.add_button(label="print limits y", callback=lambda: print(dpg.get_axis_limits("y_axis"))) + + with dpg.plot(label="Bar Series", height=-1, width=-1): + dpg.add_plot_legend() + + # create x axis + dpg.add_plot_axis(dpg.mvXAxis, label="Student", no_gridlines=True, tag="x_axis") + dpg.set_axis_limits(dpg.last_item(), 9, 33) + dpg.set_axis_ticks(dpg.last_item(), (("S1", 11), ("S2", 21), ("S3", 31))) + + # create y axis + dpg.add_plot_axis(dpg.mvYAxis, label="Score", tag="y_axis") + dpg.set_axis_limits("y_axis", 0, 110) + + # add series to y axis + dpg.add_bar_series([10, 20, 30], [100, 75, 90], label="Final Exam", weight=1, parent="y_axis") + dpg.add_bar_series([11, 21, 31], [83, 75, 72], label="Midterm Exam", weight=1, parent="y_axis") + dpg.add_bar_series([12, 22, 32], [42, 68, 23], label="Course Grade", weight=1, parent="y_axis") + +dpg.create_viewport(title='Custom Title', width=800, height=600) +dpg.setup_dearpygui() +dpg.show_viewport() +dpg.start_dearpygui() +dpg.destroy_context() \ No newline at end of file -- cgit v1.2.1