The points and axes in ListPlot are sometimes noticeably offset. I have a minimal working example which is pretty dang minimal:
ListPlot[{{0, 0}}]
produces
where the dot is noticeably off-center. How do I fix this?
I don't think this is the same problem as the one described in Point Renderings Slightly Off in Mathematica, because Mr.Wizard's solution BaseStyle -> Opacity[.999] does not help.
Mathematica v11.1.0 for Mac OS X x86 (64-bit), running on Mac OS X Yosemite.

AxesStyle->Directive[Antialiasing->False]orBaseStyle->{Antialiasing->False}and see if that helps. – Carl Woll Jul 14 '17 at 23:10Graphics[{Blue, PointSize[Medium], Point[{0, 0}]}, Axes -> True]is also off-center, but in a different direction. At least that one is consistent withGraphics[{Blue, Disk[{0, 0}, 0.02]}, Axes -> True, PlotRange -> {{-1, 1}, {-1, 1}}]. – Jul 15 '17 at 13:39ListPlot[{{0, 0}}, PlotMarkers -> {Graphics[{Blue, Disk[{0, 0}, 1]}], 0.04}]looks correctly centered. – Jul 15 '17 at 13:42