Overlay Pie chart and scatter plot with CairoMakie

Hi Julia community, Do you know if there is a way to put multiple pie charts on an existing scatter plot based on the x y position?
I am trying to create a figure like this with Makie but can’t get it to work.

Thank very much in advance!

I just quickly checked the docs and it seemed pie is always centered at 0, 0 by default and there’s no attribute to change it. But you should be able to call Makie.translate!(pieobject, x, y, 0) to translate each pie to where you need it.

1 Like

Great! Thanks, I will give it a try!