How can align the points inside their respective boxes in Box plot (when an overlay is applied)

i have a data where group x is one column lets say A , and on overlay there is another column lets say B .
Is there any option that the points can be aligned in their respective boxes?
Below is my code -
createBoxPlot = Function({dt, cols},
Show("Using Columns for Box Plot:", cols);
// Create Dashboard with Box Plots
New Window("Analysis Dashboard",
Tab Box(
"Box Plots",
V List Box(
Text Box("Box Plot by A, B"),
For(i = 1, i <= N Items(cols), i++,
gb = Graph Builder(
Size(800, 500),
Show Control Panel(0),
Variables(X(:C), Y(As Column(cols[i])), Group X(:A), Overlay(:B)),
Elements(Box Plot(X, Y, Legend(4)), Points(X, Y, Legend(5)))
)
)
)
)
);
);