I'm trying to replicate the dual colours of the circles in this graph:

\documentclass[tikz,border={40pt 12pt}]{standalone}
\usepackage{pgfplots}
\usetikzlibrary{plotmarks}
\begin{document}
\begin{tikzpicture}[trim axis left,trim axis right]
\begin{axis}[%
width=4.52083333333333in,
height=1.9359375in,
scale only axis,
xmin=0,
xmax=2,
xlabel={Partition},
ymin=0,
ymax=5,
ytick={1,...,5},
xtick={0,0.5,...,2},
ylabel={No Partition}
]
\addplot [
color=red,
only marks,
mark=ball,
mark options={solid, line width=1pt},
forget plot
]
table[row sep=crcr]{
0.752891515 1.119390244\\
0.918362178 1.65402439\\
0.794259181 4.527682927\\
1.10865344 0.515142276\\
1.621612495 1.002439024\\
};
\addplot [
color=black,
dashed,
line width=1pt,
forget plot
]
table[row sep=crcr]{
0.6 2.64921945346413\\
0.7 2.44758628403132\\
0.8 2.24595311459851\\
0.9 2.04431994516571\\
1 1.8426867757329\\
1.1 1.64105360630009\\
1.2 1.43942043686729\\
1.3 1.23778726743448\\
1.4 1.03615409800167\\
1.5 0.834520928568865\\
1.6 0.632887759136058\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
So far I have this:

Does anyone know of inbuilt gradient options for colouring? If not I'll settle for


\fill [ draw=white, inner color=black, outer color=white,...(or for finer control, take a look at http://tex.stackexchange.com/q/115340/2552). I'm not sure about the transparency, though, you might want to open a new question for that. – Jake Oct 10 '13 at 21:20