- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
如何移动子图的标题,使第二个轴不写在标题的顶部,而是写在标题的下方?这是它的样子
下面是相关的代码片段:
# fig is a subplotAxes object
fig.set_ylabel('Altitude (km)')
fig.set_xlabel('Time')
fig.get_xaxis().set_major_formatter(mpl.dates.DateFormatter('%H:%M:%S'))
cbar_label = 'Total Attenuated Backscatter 532nm (km$^{-1}$ sr$^{-1}$)'
cbar = pfig.colorbar(im)
cbar.set_label(cbar_label)
# create second axis
ax2 = fig.twiny()
ax2.set_label('Latitude')
ax2.set_xlim(latitude[0], latitude[-1])
# set title, but title is overwritten
fig.set_title("Averaged 532 nm Total Attenuated Backscatter")
我不知道这可能是我的图形大小或简单的格式错误的原因。我不想扩大我的图形大小,因为这个图位于 Tkinter 窗口内
最佳答案
由于您的标题适用于整个图形而不仅仅是子图,@György Solymosi 的回答可能是可行的方法(而不是添加新行,这是一种 hack)。
或者,您可以将标题文本重新定位到您想要的任何位置,例如将其提高 5%:
title = fig.set_title("Flying monkey density")
title_xy = title.get_position()
title.set_position([title_xy[0], title_xy[1]*1.05])
关于python - 添加第二个 x_axis 覆盖标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31655032/
如何移动子图的标题,使第二个轴不写在标题的顶部,而是写在标题的下方?这是它的样子 下面是相关的代码片段: # fig is a subplotAxes object fig.set_y
我正在 Java 中试用 BoxLayout 管理器,但遇到编译器错误: "cannot find symbol X_AXIS" 当我尝试设置布局时。 是我的 IDE 有问题吗?我正在使用 NetBe
我正在尝试在 Python 中配置我的 Bokeh 图,使它们看起来更漂亮一些。例如,有没有办法修复最大缩小?这样 Bokeh 不能缩小超过 x 轴指定的范围?例如。看bokeh example ,尤
我有一个自定义的 JPanel,重写了 paintComponent 方法来绘制图像。 我想在一个容器中垂直居中插入几个自定义面板。为此,我使用 BoxLayout.X_AXIS 创建了一个 jpan
我有一个 JPanel,可以有 1 个或 2 个按钮,具体取决于当时程序中发生的情况。我使用 Box Layout.X_AXIS 来排列 2 个按钮配置,效果很好。然而,当我切换到 1 个按钮时,单个
我是一名优秀的程序员,十分优秀!