Hi,
I need to display an Area/Stairs chart in 2D (FMX project)
The issue is that I cannot have colored bars (only lines) in 2D :
Colored bars are only available for 3D :
Is it normal? Is there anyway to have a 2D one with colored bars (as it is perfect in VCL version!!!) ?
Thanks in advance.
How to display colored bars for FMX Area/Stairs 2D
Re: How to display colored bars for FMX Area/Stairs 2D
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:
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:
Hoping it will help.
Thanks in advance,
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;
Thanks in advance,
Best Regards,
Sandra Pazos / 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 |