I have upgraded gnuplot and tikz today, everything works, but the plots are pretty low resolution now.
The following code compiles into:
Code: Select all
\begin{tikzpicture}[domain=-4:4, scale=0.75,baseline=(current bounding box.north)]
\draw[very thin,color=gray] (-3.9,-3.9) grid (3.9,3.9);
\draw[-stealth] (-4.2,0) -- (4.2,0) node[above] {$x$};
\draw[-stealth] (0,-4.2) -- (0,4.2) node[left] {$y$};
\draw[thick,color=green!50!black] plot[id=x] function{sqrt(x)};
\draw (1,0) node [below] {1};
\draw (0,1) node [left] {1};
\draw (0,0) node [below left] {0};
\draw[thick,color=green!50!black,fill=white] (0,0) circle (2pt);
\end{tikzpicture}

Before the update it was pretty low resolution but still beter, example:

Why is the first part of the graph not curvy? How can i fix this?