TArrowSeries arrow width

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
bdw
Advanced
Posts: 130
Joined: Mon Mar 07, 2005 5:00 am
Location: New Zealand
Contact:

TArrowSeries arrow width

Post by bdw » Tue May 04, 2010 5:56 am

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;

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

Re: TArrowSeries arrow width

Post by Yeray » Tue May 04, 2010 3:33 pm

Hi bdw,

I think you are looking for this:

Code: Select all

Series1.Pointer.Pen.Width:=3;
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

bdw
Advanced
Posts: 130
Joined: Mon Mar 07, 2005 5:00 am
Location: New Zealand
Contact:

Re: TArrowSeries arrow width

Post by bdw » Wed May 05, 2010 12:20 am

Must appreciated, that worked like a charm.

Post Reply