如何将日期轴旋转90度?

如何将日期轴旋转90度?

在此处输入图片描述

将日期旋转 90 度。如何实现?

答案1

添加xticklabel style={rotate=90}axis选项中。例如:

\documentclass{article}
\usepackage{pgfplots}
\usepgfplotslibrary{dateplot}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
  xticklabel style={rotate=90},
  date coordinates in=x,
  xticklabel={\day.\month.\year}
  ]
\addplot coordinates{(2015-01-05,42)(2015-06-20,24)};
\end{axis}
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容