gpt4 book ai didi

python - 如何更新 tkinter 中 matplotlib 图中的 x 限制

转载 作者:太空宇宙 更新时间:2023-11-03 19:06:50 28 4
gpt4 key购买 nike

我使用 TKinter 制作了一个 GUI,可以从安捷伦示波器读取示波器轨迹。我希望 x 轴在更改时间/格时更新。为了更新 x 和 y 数据,我使用 set_xdataset_ydata。是否有类似的方法来更新 x 限制?

最佳答案

您需要了解一些对象层次结构。您正在对 Line2D 对象调用 set_xdata,该对象是与 Axes 对象关联的 Artist(处理诸如对数与线性、x/y 限制、轴标签、刻度位置和标签等与 Figure 对象关联的内容(它将一堆轴对象组合在一起,处理窗口管理器) (对于 gui)等)和一个 canvas 对象(实际上处理将所有其他对象转换为屏幕上的图片)。

如果您使用 Tkinter,我假设您有一个 axes 对象(我将其称为 ax)。

ax = fig.subplot(111) # or where ever you want to get you `Axes` object from.
my_line = ax.plot(data_x, data_y)
# whole bunch of code
#
# more other code


# update your line object
my_line.set_xdata(new_x_data)
my_line.set_ydata(new_y_data)

# update the limits of the axes object that you line is drawn on.
ax.set_xlim([top, bottom])
ax.set_ylim([left, right])

因此,要更新行中的数据,您需要更新 my_line,要更新轴限制,您需要更新 ax

set_xlim docset_ylim doc

关于python - 如何更新 tkinter 中 matplotlib 图中的 x 限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14514321/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com