Makie Bar Plots

I feel as though I’m probably missing something obvious, but there don’t seem to be a lot of examples for bar plots in Makie that don’t point you back towards AoG. How can I get these bars to be properly dodged? Here is the code I wrote, and included is an example result. I just want one data set on the left and the other on the right. Nothing fancy. Any help is greatyly appreciated.

grades = df[:,1]
fig = CairoMakie.Figure()
ax1 = CairoMakie.Axis(fig[1,1], xticks = (1:7, grades), title = "Pore and Particle Size")

barplot!(ax1, 1:7,
particles,
dodge = [1,1,1,1,1,1,1], width = 0.5,
)

barplot!(ax1, 1:7,
pores,
dodge = [2,2,2,2,2,2,2], width = 0.5,
)