From 9194b5e9e4d7b72bf08d01c0fde6ff78be36215e Mon Sep 17 00:00:00 2001 From: sara Date: Sat, 6 Nov 2021 20:11:11 +0100 Subject: An graphischer Darstellung weitergearbeitet --- src/Test_Plots/test.py | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 src/Test_Plots/test.py (limited to 'src/Test_Plots/test.py') diff --git a/src/Test_Plots/test.py b/src/Test_Plots/test.py new file mode 100644 index 0000000..3fb0d51 --- /dev/null +++ b/src/Test_Plots/test.py @@ -0,0 +1,57 @@ +import dearpygui.dearpygui as dpg +from math import sin + +import qpks as qp + +q = qp.qpsk_nogui() + +dpg.create_context() + +# data = q.analog_random_source_x_0 + +sindatax = [] +sindatay = [] +for i in range(0, 100): + sindatax.append(i / 100) + sindatay.append(0.5 + 0.5 * sin(50 * i / 100)) +sindatay2 = [] +for i in range(0, 100): + sindatay2.append(2 + 0.5 * sin(50 * i / 100)) + +with dpg.window(label="Tutorial", width=500, height=400): + # create a theme for the plot + with dpg.theme(tag="plot_theme"): + with dpg.theme_component(dpg.mvStemSeries): + dpg.add_theme_color(dpg.mvPlotCol_Line, (150, 255, 0), category=dpg.mvThemeCat_Plots) + dpg.add_theme_style(dpg.mvPlotStyleVar_Marker, dpg.mvPlotMarker_Diamond, category=dpg.mvThemeCat_Plots) + dpg.add_theme_style(dpg.mvPlotStyleVar_MarkerSize, 7, category=dpg.mvThemeCat_Plots) + + with dpg.theme_component(dpg.mvScatterSeries): + dpg.add_theme_color(dpg.mvPlotCol_Line, (60, 150, 200), category=dpg.mvThemeCat_Plots) + dpg.add_theme_style(dpg.mvPlotStyleVar_Marker, dpg.mvPlotMarker_Square, category=dpg.mvThemeCat_Plots) + dpg.add_theme_style(dpg.mvPlotStyleVar_MarkerSize, 4, category=dpg.mvThemeCat_Plots) + + # create plot + with dpg.plot(tag="plot", label="Line Series", height=-1, width=-1): + + # optionally create legend + dpg.add_plot_legend() + + # REQUIRED: create x and y axes + dpg.add_plot_axis(dpg.mvXAxis, label="x") + dpg.add_plot_axis(dpg.mvYAxis, label="y", tag="yaxis") + + # series belong to a y axis + # dpg.add_stem_series(data, sindatay, label="Source", parent="yaxis", tag="series_data") + dpg.add_stem_series(sindatax, sindatay, label="0.5 + 0.5 * sin(x)", parent="yaxis", tag="series_data") + dpg.add_scatter_series(sindatax, sindatay2, label="2 + 0.5 * sin(x)", parent="yaxis", tag="series_data2") + + # apply theme to series + dpg.bind_item_theme("series_data", "plot_theme") + dpg.bind_item_theme("series_data2", "plot_theme") + +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