如何从数据中协调轴跨度?

如何从数据中协调轴跨度?

必须要摆脱它。

在此处输入图片描述

这:

在此处输入图片描述

\begin{tikzpicture}
    \begin{axis}[xticklabel style={anchor=east,rotate=90},
    date coordinates in=x,
    xticklabel={\day.\month.\year},
    table/col sep = semicolon,
    height = 0.3\paperheight, 
    width = 0.5\paperwidth,
    xmin=2015-10-01,
    xmax=2015-12-31,
    ymin=30,
    ymax=55,
    /pgf/number format/1000 sep={},
    no markers,
    every axis plot/.append style={ultra thick}
]
        \addplot table[x index=0, y index=1, col sep=comma] {oil_prices.csv};
        \addplot table[x index=0, y index=2, col sep=comma] {oil_prices.csv};  
    \end{axis}
\end{tikzpicture}

相关内容