function hmticks,axis,index,value

xx=value mod 86400.
if xx lt 0 then xx=xx+86400.

hh=long(xx)/3600
mm=long(xx-3600*hh)/60
str=string(hh,mm,format="(i2.2,':',i2.2)")
return, str
end
