Scattering points around x-axis groups (scattermode in Julia)

I want to scatter the points around the x-axis groups (one above, one left, one right). They are currently all stacked which is undesirable. I’m using PlotlyJS in Julia.

I’ve tried using “scattermode=“group”” but nothing seems to happen.

Here’s my basic code.

lineplot = PlotlyJS.plot(plot_data, x=:x, y=:y, group=:group, kind=“scatter”, marker=attr(size=12, opacity=.5), marker_line=attr(width=2, color=“DarkSlateGrey”, opacity=.75), error_y=attr(type=“data”, array=:errors, width=10, thickness=2.5))