在图上绘制虚线(指定坐标)

在图上绘制虚线(指定坐标)

我想要得到下图中的图(无网格):

在此处输入图片描述

到目前为止我只得到了轴+点:

\usepackage{pgfplots}
\pgfplotsset{width=10cm,compat=1.9}

\begin{tikzpicture}
\begin{axis}
\addplot[color=red,mark=square]coordinates{(2,2)};
\end{axis}
\end{tikzpicture}

非常感谢您的宝贵时间。

答案1

您指的是下面这样的情况吗?

% used PGFPlots v1.15
\documentclass[border=5pt]{standalone}
\usepackage{pgfplots}
    \pgfplotsset{
        compat=1.11,
    }
\begin{document}
\begin{tikzpicture}
    \begin{axis}[
        xmin=0,     xmax=8,
        ymin=0,     ymax=8,
        xlabel={$x$},
        ylabel={$y$},
        axis lines=center,
        xtick={1,2},
        ytick={1,2},
    ]
        \addplot [color=red,mark=*] coordinates {(2,2)};

        \draw [dashed,help lines] (0,2) -| (2,0);
    \end{axis}
\end{tikzpicture}
\end{document}

该图显示了上述代码的结果

相关内容