Hi
I'm porting a custom series to FMX and I can't find info on TTeePen:
In VCL I have BarPen.Style := psClear; - what's the equivalent in FMX?
Thanks, Bob
TTeePen
Re: TTeePen
Hi,
You may be missing the FMXTee.Canvas unit in the uses clause because the following seems to work fine for me here:
You may be missing the FMXTee.Canvas unit in the uses clause because the following seems to work fine for me here:
Code: Select all
uses FMXTee.Series, FMXTee.Canvas;
procedure TForm1.FormCreate(Sender: TObject);
begin
with Chart1.AddSeries(TBarSeries) as TBarSeries do
begin
FillSampleValues;
BarPen.Style:=psClear;
end;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: TTeePen
That was it - thanks. I'd just assumed FMX had a different constant!
Cheers, Bob
Cheers, Bob
-
- Newbie
- Posts: 37
- Joined: Mon Jul 13, 2015 12:00 am
Re: TTeePen
I also would like to know where to find the
TSeriesMarkStyle
for FMX?
WHere can I find this and similar questions? Is there a Help for the FMX Teechart Types?
Thanks
Walter
TSeriesMarkStyle
for FMX?
WHere can I find this and similar questions? Is there a Help for the FMX Teechart Types?
Thanks
Walter
-
- Newbie
- Posts: 37
- Joined: Mon Jul 13, 2015 12:00 am
Re: TTeePen
I found it ALL Styles for this begins with sms...
F.e. smsLabel or smsValue.
right?
F.e. smsLabel or smsValue.
right?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: TTeePen
Yes, that's correct.
Best Regards,
Narcís Calvet / 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 |