Hi,
When working on a diagram with several big negative values, the axis
started to behave weird:
The ticks are all in one portion of the axis, and the rest of the axis
has no ticks.
Consider the following code for values that exhibit this behaviour:
\documentclass{article}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.10}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot coordinates { (-323573.5, -327215.79) (-323572.1, -327210.13)
(-323572.1, -327206.85) };
\end{axis}
\end{tikzpicture}
\end{document}
I have written on tex/stackexchange about it (see for an image, too):
http://tex.stackexchange.com/questions/266637/weird-axis-labelling-for-large-negative-values
Best, Markus
|