g.fillRect(x0, y, x1-x0-1, h);
g.setColor(Color.white);
g.drawLine(x1-1, y, x1-1, y+h);
g.drawLine(x0,y+h,x1,y+h);
objectLocations.add(new Mouseover(new Interval(start,end), x0, y, x1-x0-1, h));
g.setFont(model.getDisplay().timeLabel());
String label=full? t.unit.formatFull(start) : t.unit.format(new Date(start));
int tx=x0+3;
int ty=y+h-5;