Я нашел способ сделать это, изменив две вещи для переменной ax_x.
- Уменьшите размер шрифта, добавив
tick_style={'font-size': 7}
. - Добавить
offset={'scale':x_sc, 'value':10}
.
Новый код выглядит так:
x_data = df_ts.columns.values.tolist()
y_end = df_ts.loc[end_date, :].values.flatten()
y_start = df_ts.loc[start_date, :].values.flatten()
x_sc = OrdinalScale()
y_sc = LinearScale()
ax_x = Axis(label='RIC', scale=x_sc, grid_lines='solid', tick_rotate=90, tick_style={'font-size': 7}, label_offset='40',
offset={'scale':x_sc, 'value':10})
ax_y = Axis(label='%', scale=y_sc, orientation='vertical',tick_format='0.2f', label_offset='-40')
line = Lines(x=x_data, y=[y_end, y_start], scales={'x': x_sc, 'y': y_sc},
display_legend=True, labels=[end_date, start_date], stroke_width=1)
bar = Bars(x=x_data, y=df_diff.tolist(), scales={'x': x_sc, 'y': y_sc}, padding=0.5)
fig = Figure(marks=[line, bar], axes=[ax_x, ax_y], title='Swap rates and differences', legend_location='top-left')
display(fig)
И отображается как: Результаты