BevelOuter TeeChart 8.04
Posted: Thu Jun 17, 2010 8:42 am
Hello,
I use this code
When i Assign Chart1 with tmpChart, the property BevelOuter is not assigned.
Thanks for help
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;
Thanks for help