TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
-
Calou
- Advanced
- Posts: 104
- Joined: Wed Nov 19, 2008 12:00 am
Post
by Calou » Thu Jun 17, 2010 8:42 am
Hello,
I use this code
Code: Select all
procedure TForm1.Button1Click(Sender: TObject);
var tmpChart:TCustomChart;
begin
Series1.FillSampleValues(10);
tmpChart:=TChart.Create(Self);
tmpChart.BevelOuter:=bvnone;
tmpChart.Color:=clRed;
Chart1.Assign(tmpChart);
end;
When i Assign Chart1 with tmpChart, the property BevelOuter is not assigned.
Thanks for help
-
Bert B.
- Newbie
- Posts: 69
- Joined: Fri Jun 15, 2007 12:00 am
Post
by Bert B. » Thu Jun 17, 2010 9:22 am
How about upgrading to version 8.07 first?
-
Calou
- Advanced
- Posts: 104
- Joined: Wed Nov 19, 2008 12:00 am
Post
by Calou » Thu Jun 17, 2010 9:45 am
Hello,
The last time i done that (8.04->8.06) i have to downgrade to 8.04 after a lot of test caused by incompatibility
-
Yeray
- Site Admin
- Posts: 9612
- Joined: Tue Dec 05, 2006 12:00 am
- Location: Girona, Catalonia
-
Contact:
Post
by Yeray » Thu Jun 17, 2010 3:30 pm
Hi Calou,
You are right, I could reproduce it so I've added it to the wish list to be enhanced in future releases (TV52014981).
FYI: The same happens in the actual v2010.
-
Calou
- Advanced
- Posts: 104
- Joined: Wed Nov 19, 2008 12:00 am
Post
by Calou » Fri Jun 18, 2010 10:41 am
Thank you for the answer
Regards