Speedbutton hint

How can you show the hint of the TMSFMXSpeedbutton?

  TMSFMXSpeedButton1.Hint := 'test';
  TMSFMXSpeedButton1.ShowHint := True;
I have tried the code above, and also setting the showhint in the designer, no succes so far.

Works as expected here


procedure TForm1.FormCreate(Sender: TObject);
begin
  TMSFMXSpeedButton1.ShowHint := True;
  TMSFMXSpeedButton1.Hint := 'test';
end;