¡Qué
toca-pelotas, tu jefe! ¿No?



Supongo que la única opción es hacer el pintado tú de forma manual.
Este código lo he encontrado por Internet (no es mio); A ver si te sirve o te da una idea de cómo hacerlo.
Código Delphi
[-]
procedure TfrmSubscription.StatusBarDrawPanel(vStatusBar: TStatusBar;
Panel: TStatusPanel; const Rect: TRect);
var OldColor, OldBrushColor : TColor;
OldStyle : TFontStyles;
begin
inherited;
if Panel.Index = 0 then begin
with StatusBar.Canvas do begin
OldColor := Font.Color;
OldStyle := Font.Style;
OldBrushColor := Brush.Color;
try
case SubStatus of
stExpired: Brush.Color := clTeal;
stCanceled: Brush.Color := clLime;
else Brush.Color := clBtnFace;
end;
FillRect(Rect);
Font.Color := clRed;
Font.Style := [fsBold];
TextOut(Rect.Left + 3, Rect.Top, Panel.Text);
finally Font.Color := OldColor;
Font.Style := OldStyle;
Brush.Color := OldBrushColor;
end; end; end; end;