aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dearpygui/test4_multiple_y_axes.py
diff options
context:
space:
mode:
authorsara <sara.halter@gmx.ch>2021-11-11 20:05:40 +0100
committersara <sara.halter@gmx.ch>2021-11-11 20:05:40 +0100
commit1e873c7ec474b1af4082aafcd33c0ba7a9fd3d51 (patch)
tree98e592e42f27ec2a6bd1db689fc1b4196b4c7573 /tests/dearpygui/test4_multiple_y_axes.py
parentFIR/Fading implementiert (diff)
parentCreate ZMQ test (diff)
downloadFading-1e873c7ec474b1af4082aafcd33c0ba7a9fd3d51.tar.gz
Fading-1e873c7ec474b1af4082aafcd33c0ba7a9fd3d51.zip
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'tests/dearpygui/test4_multiple_y_axes.py')
-rw-r--r--tests/dearpygui/test4_multiple_y_axes.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/dearpygui/test4_multiple_y_axes.py b/tests/dearpygui/test4_multiple_y_axes.py
new file mode 100644
index 0000000..ebaac7e
--- /dev/null
+++ b/tests/dearpygui/test4_multiple_y_axes.py
@@ -0,0 +1,25 @@
+import dearpygui.dearpygui as dpg
+
+dpg.create_context()
+
+with dpg.window(label="Tutorial", width=400, height=400):
+ 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)
+ 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="yaxis_tag")
+
+ # add series to y axis
+ dpg.add_bar_series([10, 20, 30], [100, 75, 90], label="Final Exam", weight=1, parent="yaxis_tag")
+ dpg.add_bar_series([11, 21, 31], [83, 75, 72], label="Midterm Exam", weight=1, parent="yaxis_tag")
+ dpg.add_bar_series([12, 22, 32], [42, 68, 23], label="Course Grade", weight=1, parent="yaxis_tag")
+
+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