var shape = new esri.geometry.Point(somex, somey, new esri.SpatialReference({wkid:4326}));
var simpleMarkerSymbol = new esri.symbol.SomeSymbol(-Insert Attributes Here-).setOffset(5,5);
var graphic = new esri.Graphic(shape, simpleMarkerSymbol);
I need a way to be able to get the lat long of the graphic post-application of the offset
var long = graphic.geometry.x; var lat = graphic.geometry.y;