可编辑图形的大小

问题描述 投票:0回答:1

NetGraph
EditableGraph
中,绘图看起来像是被包围在一个正方形中。如何才能沿横轴扩展图形的绘制限制呢?谢谢你。

bounds netgraph
1个回答
0
投票

与每个 matplotlib 图形一样,您可以通过多种方式更改轴限制:

import matplotlib.pyplot as plt

from netgraph import EditableGraph

fig, ax = plt.subplots()
g = EditableGraph(..., ax=ax)
ax.set_xlim(-2, 3)
© www.soinside.com 2019 - 2024. All rights reserved.