enum ScatterShape {
ssNone ///< Scatter symbols not drawn (. in QCPGraph, data only represented with lines)
,ssDot ///< \enumimage{} Single pixel (use \ref ssDisc or \ref ssCircle if you need a circle with a specific radius)
,ssCross ///< \enumimage{} Cross
,ssPlus ///< \enumimage{} Add sign
,ssCircle ///< \enumimage{} A circle
,ssDisc ///< \enumimage{} A circle filled with the color of the pen (rather than a brush filled with ssCircle)
,ssSquare ///< \enumimage{} A square
,ssDiamond ///< \enumimage{} diamond
,ssStar ///< \enumimage{} Eight-armed star, that is, a combination of cross and plus sign
,ssTriangle ///< \enumimage{} Equilateral triangle located on the baseline
,ssTriangleInverted ///< \enumimage{} An equilateral triangle located on the corner
,ssCrossSquare ///< \enumimage{} Square with crosses inside
,ssPlusSquare ///< \enumimage{} Square with plus sign inside
,ssCrossCircle ///< \enumimage{} Circle with crosses inside
,ssPlusCircle ///< \enumimage{} A circle with a plus sign inside
,ssPeace ///< \enumimage{} A circle with a vertical and two downward diagonal lines
,ssPixmap ///< Custom pixel map specified by \ref setPixmap centered on data point coordinates
,ssCustom ///< Custom renderer operations are executed by scatter (as QPainterPath, see \ref setCustomPath)
};