I am trying to make a box chart for four data sets with the data points shown on each box. This can be done using the Chart Element Function (CEF). I need a custom pointstyling detailed below.
Currently, I have the cef as
cef = {ChartElementData["BoxWhisker"][##], PointSize[0.015],
EdgeForm[], FaceForm[None],
ChartElementData["PointDensity",
"PointStyle" ->
Directive[EdgeForm[Black],
Darker[Charting`ChartStyleInformation["Color"]]]][##]} &;
However, I want a more custome point styling. For example, I want that the first and third bix's point style be a circle or rectangle. How can I achieve this?