Hello OCEabct,
The problem you are experiencing is already added in TeeChart FireMonkey tracker as we told you by email. Here's you have the link:
http://bugs.teechart.net/show_bug.cgi?id=1101. Remember add your email to the tickets so you can be automatically notified when an update arrives.
Meantime, I would like suggest some workarounds for the problem you are experiencing.
You can implement and configure properties of TAreaSeries by code to prevent the 3D view problem as do in code below:
Code: Select all
{$R *.fmx}
uses FMXTee.Series, FMXTee.Functions.Stats;
var Series1:TAreaSeries;
procedure TForm1.FormCreate(Sender: TObject);
begin
Chart1.View3D := false;
Series1 := TAreaSeries.Create(Self);
Chart1.AddSeries(Series1);
Series1.FillSampleValues(10);
Series1.Stairs := True;
end;
An alternative is add the TAreaSeries in design time in 3D view in Gallery editor and change the 3D view in 3D editor. The image below shows you how:

- Change3Dview.jpg (262.74 KiB) Viewed 9193 times
Hoping it will help.
Thanks in advance,