Ok the ChilKat support replied with the solution.
"The white marker is the Lazarus ActiveX visual wrapper window being created for TaxcChilkatGlobal.
ChilkatGlobal is logically a non-visual COM/ActiveX object, but Lazarus imported it as a T... ActiveX control class.
When you do:
oGlob := TaxcChilkatGlobal.Create(Self);
Lazarus creates a small hosted ActiveX window/control on the form. That tiny white shape is the empty ActiveX host/control surface, not something drawn by Chilkat intentionally.
Use the non-visual COM object creation style instead of the T... wrapper, for example:"
uses
ComObj;
var
glob: OleVariant;
begin
glob := CreateOleObject('Chilkat.Global');
glob.UnlockBundle('...');
end;