Hi
Is it possible to get the 3d bubble series to always to have the bubble facing the front rather than end up as a line if you view it from one end?
D2010, latest version of Teecharts.
Richard
3d bubble series
Re: 3d bubble series
Hi Richard,
Try using OpenGL:
Try using OpenGL:
Code: Select all
uses TeeOpenGL, TeePoin3;
procedure TForm1.FormCreate(Sender: TObject);
begin
with TTeeOpenGL.Create(self) do
begin
TeePanel:=Chart1;
Active:=true;
end;
Chart1.AddSeries(TBubble3DSeries).FillSampleValues();
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: 3d bubble series
Thanks I will try that
as an aside note will opengl stuff run OK on apple OS with the emulators? We sell quite a lot to mac users - so if not I guess I would have to check the operating system or some such option.
as an aside note will opengl stuff run OK on apple OS with the emulators? We sell quite a lot to mac users - so if not I guess I would have to check the operating system or some such option.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: 3d bubble series
Hi Richard,
Are those emulators running windows? If that's the case I wouldn't expect any problem. Anyway, as far as I know, OpenGL is cross-platform.
Are those emulators running windows? If that's the case I wouldn't expect any problem. Anyway, as far as I know, OpenGL is cross-platform.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: 3d bubble series
Yes windows - OK thanks - I will have a go