pgfplots:改变轴刻度线的形状

pgfplots:改变轴刻度线的形状

如何在轴上使用不同形状的刻度标记,例如圆形?我尝试将刻度样式设置为shape=circle和类似的东西,但似乎没有效果。

\documentclass{minimal}
\usepackage{pgfplots}

\begin{document}
\begin{tikzpicture}
\begin{axis}[tick style={shape=circle}]
    \addplot[samples=300,domain=0:1,thick]{x^2};
\end{axis}
\end{tikzpicture}
\end{document}

答案1

您可以使用删除默认刻度线,然后使用另一个命令xtick style={draw=none}在 x 轴上绘制圆圈,以绘制圆圈。\addplotmark=o

在此处输入图片描述

\documentclass[border=3pt]{standalone}
\usepackage{pgfplots}

\begin{document}
\begin{tikzpicture}
\begin{axis}[
%   tick style={shape=circle},
   xtick style={draw=none}, % <-- removing default tick marks
   ymin=-0.1                % <-- define ymin
   ]
    \addplot[samples=300,domain=0:1,thick]{x^2};
    \addplot[draw=none,mark=o] coordinates
    {(0,-0.1) (0.2,-0.1) (0.4,-0.1) (0.6,-0.1) (0.8,-0.1) (1,-0.1)}; % <-- add circles by plotting marks at y=-0.1
\end{axis}
\end{tikzpicture}
\end{document}

相关内容