Python【Matplotlib】图例可拖动改变位置

2023-12-17 03:46:19

在这里插入图片描述

代码:

import matplotlib.pyplot as plt
from matplotlib.widgets import Button

# 创建一个示例图形
fig, ax = plt.subplots()
line, = ax.plot([1, 2, 3], label='Line 1')

# 添加图例
legend = ax.legend(loc='upper right', draggable=True)

# 添加一个按钮,用于切换图例的可见性
ax_button = plt.axes([0.81, 0.02, 0.1, 0.04])
button = Button(ax_button, 'Toggle Legend')

def toggle_legend(event):
    legend.set_visible(not legend.get_visible())
    plt.draw()

button.on_clicked(toggle_legend)

plt.show()

文章来源:https://blog.csdn.net/qq_43324506/article/details/135017309
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。