Addplot3はエンドポイントを接続します

Addplot3はエンドポイントを接続します

次のコード

\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot3[domain=0:10] (x, 25, {x^2});
\end{axis}
\end{tikzpicture}
\end{document}

生産する

ここに画像の説明を入力してください

エンドポイント間の線を削除するにはどうすればよいですか?

答え1

追加すると、samples y=0エンドポイントを接続する線が削除されます。

\documentclass[border=5pt]{standalone}
\usepackage{pgfplots}
\begin{document}
    \begin{tikzpicture}
        \begin{axis}
            \addplot3 [
                domain=0:10,
                % ----------
                % add `samples y=0' to remove the line connecting the endpoints
                samples y=0,
                % ----------
            ] (x, 25, {x^2});
        \end{axis}
    \end{tikzpicture}
\end{document}

上記コードの結果を示す画像

関連情報