OpenGL not available

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
MHotz
Newbie
Newbie
Posts: 12
Joined: Mon Nov 25, 2013 12:00 am
Contact:

OpenGL not available

Post by MHotz » Tue Sep 23, 2014 8:52 am

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
Attachments
Screen02.png
Screen02.png (483.38 KiB) Viewed 4345 times
Screen01.png
Screen01.png (109.83 KiB) Viewed 4340 times

Yeray
Site Admin
Site Admin
Posts: 9514
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: OpenGL not available

Post by Yeray » Tue Sep 23, 2014 1:30 pm

Hi Markus,

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

Code: Select all

uses TeeOpenGL;
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

MHotz
Newbie
Newbie
Posts: 12
Joined: Mon Nov 25, 2013 12:00 am
Contact:

Re: OpenGL not available

Post by MHotz » Thu Sep 25, 2014 7:40 am

Hi Yerray!

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

Regards
Markus

Post Reply