Page 1 of 1

3d bubble series

Posted: Thu Mar 31, 2011 3:16 pm
by 16556228
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

Re: 3d bubble series

Posted: Fri Apr 01, 2011 8:14 am
by yeray
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;

Re: 3d bubble series

Posted: Tue Apr 05, 2011 8:21 am
by 16556228
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.

Re: 3d bubble series

Posted: Tue Apr 05, 2011 9:42 am
by narcis
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.

Re: 3d bubble series

Posted: Wed Apr 06, 2011 8:32 am
by 16556228
Yes windows - OK thanks - I will have a go