I am using the pgfplots package and I realy like its features! However, I ran into two "problems":
1: On the right y axis there appears to be an artifact about half way up where the line is replaced by some sort of hexagon.
Here the manual: http://www.ctan.org/tex-archive/graphic ... fplots.pdf
2: I have set up cycle list, where all my preferences concering the line styles and markers are beeing set. On every new axis environment the plots get the styles I specifed. However, is there a way to tell the the plots inside a new axis environment to start with the 3. element in the cycle list?
simplified example:
cycle list = {*, +, o, #}
Code: Select all
\begin{tikzpicture}
\begin{axis}
\addplot coordinates{...}; %this has '*'-style
\addplot coordinates{...}; %this has '+'-style
\end{axis}
\begin{axis}%[set option so that the first plot has 'o'-style]
\addplot coordinates{...}; %this has '*'-style but I want it to have 'o'-style
\addplot coordinates{...}; %this has '+'-style but I want it to have '#'-style
\end{axis}
\end{tikzpicture}
Any help or advice, suggestion or opinion is appreciated!!
cherio Woltan