Page 1 of 1

TArrowSeries arrow width

Posted: Tue May 04, 2010 5:56 am
by 9236183
Hello,

We have TChart 7.08 and are trying to use the TArrowSeries series in 2D mode. Can you tell me in realtime mode how to set the width of the drawn line ?

I have tried all of these options but don't seem to be able to change the width of the drawn line :-

wd_->Pen->Width = 5;
wd_->LinePen->Width = 5;
wd_->AreaLinesPen->Width = 5;
wd_->LineHeight = 5;
wd_->ArrowHeight = 10;
wd_->ArrowWidth = 10;
wd_->ArrowPercent = 100;
wd_->OutLine->Width = 5;

Re: TArrowSeries arrow width

Posted: Tue May 04, 2010 3:33 pm
by yeray
Hi bdw,

I think you are looking for this:

Code: Select all

Series1.Pointer.Pen.Width:=3;

Re: TArrowSeries arrow width

Posted: Wed May 05, 2010 12:20 am
by 9236183
Must appreciated, that worked like a charm.