3d bubble series

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Richard
Newbie
Newbie
Posts: 7
Joined: Tue May 25, 2010 12:00 am

3d bubble series

Post by Richard » Thu Mar 31, 2011 3:16 pm

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

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

Re: 3d bubble series

Post by Yeray » Fri Apr 01, 2011 8:14 am

Hi Richard,

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,
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

Richard
Newbie
Newbie
Posts: 7
Joined: Tue May 25, 2010 12:00 am

Re: 3d bubble series

Post by Richard » Tue Apr 05, 2011 8:21 am

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.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: 3d bubble series

Post by Narcís » Tue Apr 05, 2011 9:42 am

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.
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

Richard
Newbie
Newbie
Posts: 7
Joined: Tue May 25, 2010 12:00 am

Re: 3d bubble series

Post by Richard » Wed Apr 06, 2011 8:32 am

Yes windows - OK thanks - I will have a go

Post Reply