控制轴的标题标签颜色

时间:2019-04-12 06:37:19

标签: python altair

正在努力设置我的轴​​标签的颜色。

base = alt.Chart(xf.loc['2017':].reset_index(), title="trouble").encode(
    x='Date'
)

rigs = base.mark_line(color='blue').encode(
    alt.Y('Total Oil Rigs', scale=alt.Scale(zero=False),axis=alt.Axis( title='I should BLUE'))
)

prod = base.mark_line(color='green').encode(
    alt.Y('US Crude Production', scale=alt.Scale(zero=False),axis=alt.Axis( title='I should be GREEN'))
)

alt.layer(
    rigs,
    prod
).resolve_scale(
    y='independent'
).configure_axisLeft(labelColor='blue').configure_axisRight(labelColor='green')

我可以使用configure_axisLeft/Right()函数设置#2和#3,但是我找不到找到设置轴标题颜色(#1,#4)的方法。我也没有在altair.Axis文档中看到任何选项。 enter image description here

1 个答案:

答案 0 :(得分:3)

您可以使用titleColor配置:

chart.configure_axisLeft(
  labelColor='blue'
  titleColor='blue'
).configure_axisRight(
  labelColor='green',
  titleColor='green'
)