TeeChart Speed on IOS

TeeChart FireMonkey (Windows,OSX,iOS & Android) for Embarcadero RAD Studio, Delphi and C++ Builder (XE5+)
Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: TeeChart Speed on IOS

Post by Narcís » Tue Mar 27, 2012 11:09 am

Hi rlebbar,

We are aware that iOS devices are slower. We will try to improve its performance for future releases. In the meantime you could try adding the constants below to your projects. It helped slightly increasing performance here.

Code: Select all

uses
  FMX_Types;

begin
  GlobalUseHWEffects:=False;
  GlobalDisableFocusEffect:=True;
  GlobalUseDirect2D:=False;
  GlobalUseDirect2DSoftware:=True;

  Application.Initialize;
...
end;
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply