Page 1 of 1

How to programmically set the border in a TBarSeries?

Posted: Tue Feb 28, 2006 5:12 pm
by 9239037
Hi How do do that?

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

Thanks
Lasse

Posted: Wed Mar 01, 2006 8:21 am
by narcis
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;