I would like to have more control on fading in TikZ. Consider fading a circle radially outwards, which can be done by using inner color=transparent!0 and outer color=transparent!100. Is there a way to start the fading from the middle outwards? How can the \tikzfading be customised to account for this?
\documentclass[tikz]{standalone}
\usepackage{pgf,pgfplots}
\usetikzlibrary{fadings}
\tikzfading[name=fade out,
inner color=transparent!0,
outer color=transparent!100]
\begin{document}
\begin{tikzpicture}
\fill[red,opacity=0.9,path fading=fade out, draw=none] (0,0) circle (0.52);
\end{tikzpicture}
\end{document}
