Hello,
when using the TTeeCommander on a HighDPI device , like a Microsoft Surface (Pro 4) the label showing the rotation degree, zoom factor etc
is displaced and much too big.
Is there a way to influence the font size and the placement somehow ?
TTeeCommander HighDPI Problem
Re: TTeeCommander HighDPI Problem
Hello,
Just to make sure, are you using the latest TeeChart version available, v2017.22?
Just to make sure, are you using the latest TeeChart version available, v2017.22?
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: TTeeCommander HighDPI Problem
Hello Yeray,
Yes, I do use the latest TChart version in Delphi Berlin 10.01 (Update 2)
besr regards
Yes, I do use the latest TChart version in Delphi Berlin 10.01 (Update 2)
besr regards
Re: TTeeCommander HighDPI Problem
Hello,
Note the TeeChart Editor and the TeeChart Commander have been designed to help the developer to build and test their applications. These tools aren't designed to be accessed by the final users, so we don't recommend giving access to it.
This having said, you can try modifying the EditText TLabel. Ie:
Note the TeeChart Editor and the TeeChart Commander have been designed to help the developer to build and test their applications. These tools aren't designed to be accessed by the final users, so we don't recommend giving access to it.
This having said, you can try modifying the EditText TLabel. Ie:
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
begin
TeeCommander1.LabelText.Top:=TeeCommander1.LabelText.Top-10;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |