Change the color of the axis labels

Deadly 提交于 2019-11-27 13:47:06

问题


Here's the relevant code:

ggplot.3plus<-ggplot(summary.3plus, aes(x=sp1, y=fract.mean, fill=ForestAge)) + 
  geom_bar(position=position_dodge())+ coord_cartesian(ylim = c(1, 1.175))+
  geom_errorbar(aes(ymin=fract.mean-se, ymax=fract.mean+se),
                width=.2,                    # Width of the error bars
                position=position_dodge(.9))

ggplot.3plus<- ggplot.3plus + theme(axis.title.x = element_text(colour = "red"))

You can see that with the last line of code, I can change the color of the axis title, but not the color of the axis LABELS.


回答1:


What about

ggplot.3plus + theme(axis.text.x=element_text(colour="red"))

See ggplot2 wiki page for more theme details.



来源:https://stackoverflow.com/questions/12568032/change-the-color-of-the-axis-labels

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!