TTeePen

TeeChart FireMonkey (Windows,OSX,iOS & Android) for Embarcadero RAD Studio, Delphi and C++ Builder (XE5+)
Post Reply
rdevine
Newbie
Newbie
Posts: 5
Joined: Fri Nov 15, 2002 12:00 am

TTeePen

Post by rdevine » Tue Apr 01, 2014 10:21 am

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

Yeray
Site Admin
Site Admin
Posts: 9533
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: TTeePen

Post by Yeray » Wed Apr 02, 2014 9:56 am

Hi,

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,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

rdevine
Newbie
Newbie
Posts: 5
Joined: Fri Nov 15, 2002 12:00 am

Re: TTeePen

Post by rdevine » Wed Apr 02, 2014 3:02 pm

That was it - thanks. I'd just assumed FMX had a different constant!

Cheers, Bob

walter0316
Newbie
Newbie
Posts: 37
Joined: Mon Jul 13, 2015 12:00 am

Re: TTeePen

Post by walter0316 » Mon Mar 28, 2016 7:12 pm

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

walter0316
Newbie
Newbie
Posts: 37
Joined: Mon Jul 13, 2015 12:00 am

Re: TTeePen

Post by walter0316 » Tue Mar 29, 2016 9:07 am

I found it ALL Styles for this begins with sms...
F.e. smsLabel or smsValue.
right?
:D

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: TTeePen

Post by Narcís » Tue Mar 29, 2016 9:27 am

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
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply