Consider the following MWE:
Code: Select all
\documentclass{article}
\usepackage{auto-pst-pdf,pstricks-add}
\begin{document}
\begin{figure}
\centering
\begin{pspicture}(8,8)
\psset{unit=1.5cm,nodesepA=5pt,nodesepB=-10pt}
\psChart[userColor={red!60,green!60,yellow!60,purple!60,blue!60},chartNodeO=1.25,shadow=true,shadowsize=5pt]{91.810, 214.995, 115.457, 59.404, 19.033}{}{3}
\rput(psChartI1){$0$--$19$~years}
\ncline{psChartO1}{psChart1}
\nput{0}{psChartO1}{91810}
\rput(psChartI2){$20$--$39$~years}
\ncline{psChartO2}{psChart2}
\nput{90}{psChartO2}{214995}
\rput(psChartI3){$40$--$59$~years}
\ncline{psChartO3}{psChart3}
\nput{-90}{psChartO3}{115457}
\rput(psChartI4){$60$--$79$~years}
\ncline{psChartO4}{psChart4}
\nput{0}{psChartO4}{59404}
\rput(psChartI5){$> 79$~years}
\ncline{psChartO5}{psChart5}
\nput{0}{psChartO5}{19033}
\end{pspicture}
\end{figure}
\end{document}
Code: Select all
91.810, 214.995, 115.457, 59.404, 19.033
Code: Select all
91810, 214995, 115457, 59404, 19033
What is going on here?

Thank you in advance!