Do Callouts work in Graphics? If so, how would I have the values of centers appear below the ellipses in this example?
centers = {0, 28.7, 33.8, 48.0, 55.4, 71.9};
Graphics[
Join[
({Black, Circle[{#, 0}, {0.1, 0.4}]} & /@ centers),
{{Red, Inset["|", {75, 0}]}}
],
ImageSize -> {640, Automatic}
]
