Page 1 of 1

BevelOuter TeeChart 8.04

Posted: Thu Jun 17, 2010 8:42 am
by 10050873
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

Re: BevelOuter TeeChart 8.04

Posted: Thu Jun 17, 2010 9:22 am
by 9350556
How about upgrading to version 8.07 first?

Re: BevelOuter TeeChart 8.04

Posted: Thu Jun 17, 2010 9:45 am
by 10050873
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 :(

Re: BevelOuter TeeChart 8.04

Posted: Thu Jun 17, 2010 3:30 pm
by yeray
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.

Re: BevelOuter TeeChart 8.04

Posted: Fri Jun 18, 2010 10:41 am
by 10050873
Thank you for the answer

Regards