Page 1 of 1

OpenGL not available

Posted: Tue Sep 23, 2014 8:52 am
by 16567896
IDE: Delpi XE5
TeeChart Pro v2014.11.140512 32bit VCL

Hello!

May be my question is a stupid one. But I can't see OpenGL Option at runtime. It meens when I am in design mode I definitley have the OpenGL Option (see Screen01.png) but when I start the application and call the editor I only can choose between GDI and GDI+ (see Screen02.png). What's wrong?

That's my whole code in the Project:

Code: Select all

procedure TForm1.Button1Click(Sender: TObject);
begin
  ChartEditor1.Execute;
end;
I didn't Change any property in the Object Inspector.

Thank's and Regards
Markus

Re: OpenGL not available

Posted: Tue Sep 23, 2014 1:30 pm
by yeray
Hi Markus,

You are probably missing to add TeeOpenGL unit to the uses clause:

Code: Select all

uses TeeOpenGL;

Re: OpenGL not available

Posted: Thu Sep 25, 2014 7:40 am
by 16567896
Hi Yerray!

Thank's for your quick Answer. As I said "may be a stupid question..." :D

Regards
Markus