Is there a way to use Haloing on text in labels or ticks in Graphics3D? All of my attempts are being ignored in the final render, no error, but no haloing either. Version 14.1, MacOS
Edit: I am able to use Haloing in labels via Inset, but I still cannot get ticks to work. Adding a short example below. The red Haloing on ticks is not shown.
Plot3D[0, {x, 0, 10}, {y, 0, 10}, Boxed -> False, BoxRatios -> {1, 1, 1}, ViewPoint -> {1, 1, 1}, AxesOrigin -> {0, 0, 0}, PlotRange -> {{0, 10}, {0, 10}, {0, 10}}, TicksStyle -> Directive[Haloing[Red], Black, 20], Epilog -> Inset[Graphics[{Haloing[White], Text[Style["Text", 30]]}], Scaled[{0.5, 0.4}]] ] 