Support,
I'm using TeeChart 7 with an area or line chart with the animation tool and it works wonderfully, except how do I get it not to display the initial data? i.e. I want the chart to initially display with all values at zero and then to start the animation to their current values...
The demo included starts with the current values and then the animation starts back from zero to their final position- this is not suitable for my requirement- I don't want the user to see the initial values at all.
Regards,
Keith
Animation starting from zero?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Keith,
You could try making the series not active and just activate them when the tool is executed:
You could try making the series not active and just activate them when the tool is executed:
Code: Select all
procedure TForm1.Button1Click(Sender: TObject);
begin
Series1.Active:=true;
ChartTool1.Execute;
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
Series1.Active:=false;
end;
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 |