How to programmically set the border in a TBarSeries?

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Lasse
Newbie
Newbie
Posts: 1
Joined: Wed Nov 02, 2005 5:00 am

How to programmically set the border in a TBarSeries?

Post by Lasse » Tue Feb 28, 2006 5:12 pm

Hi How do do that?

I tried tmpBarSeries.Pen.Style:= psDots but i doesnt work.

Thanks
Lasse

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

Post by Narcís » Wed Mar 01, 2006 8:21 am

Hi Lasse,

You need to use psDot instead of psDots (ending "s" not necessery). It works fine here using:

Code: Select all

  tmpBarSeries.Pen.Style:=psDot;
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