如何在 matplotlib 中创建可拖动的图例?
我正在 matplotlib 中的坐标区对象上绘制图例,但声称将其放置在智能位置的默认定位似乎不起作用。理想情况下,我希望用户可以拖动图例。这怎么能做到呢?
I'm drawing a legend on an axes object in matplotlib but the default positioning which claims to place it in a smart place doesn't seem to work. Ideally, I'd like to have the legend be draggable by the user. How can this be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
注意:现在已内置到 matplotlib 中,它将
按预期工作
嗯,我发现解决方案的一些零散部分分散在邮件列表中。我已经想出了一个很好的模块化代码块,您可以放入并使用...这里是:
...在您的代码中...
我给 Matplotlib 用户组发了电子邮件,John Hunter 很友善地告诉我将我的解决方案添加到 SVN HEAD 中。
我希望这对使用 matplotlib 的人有所帮助。
Note: This is now built into matplotlib
will work as expected
Well, I found bits and pieces of the solution scattered among mailing lists. I've come up with a nice modular chunk of code that you can drop in and use... here it is:
...and in your code...
I emailed the Matplotlib-users group and John Hunter was kind enough to add my solution it to SVN HEAD.
I hope this is helpful to people working with matplotlib.
在更新的版本 (3.0.2) 中,它已被弃用,并且可能在未来版本中代表一个属性(因此,它将不可调用)。
In even newer versions (3.0.2) it is deprecated and will potentially be representing a property in future versions (hence, it will not be callable).
在较新版本的 Matplotlib (v1.0.1) 中,这是内置的。
如果您以交互方式使用 matplotlib(例如,在 IPython 的 pylab 模式下)。
In newer versions of Matplotlib (v1.0.1), this is built-in.
If you are using matplotlib interactively (for example, in IPython's pylab mode).