Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 2018

Summary: Many Arrow Series properties don’t work by code
Product: VCL TeeChart Reporter: sandra pazos <sandra>
Component: SeriesAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: normal CC: david
Priority: Normal    
Version: 23.171221   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description sandra pazos 2018-03-20 06:41:28 EDT
Many Arrow Series properties don’t work by code. The properties are: 
Arrow.LinePen, Arrow.Pen, Arrow.Height, Arrow.Width, Arrow.Percent:
The codes below reproduce the problems 

Pen and LinePen problems: 

procedure TForm1.FormCreate(Sender: TObject);
begin

Series2.FillSampleValues(5);
Series2.LinePen.Width := 3;
Series2.LinePen.Style := psDashDot;
end;

Arrow.Height, Arrow.Width and Arrow.Percent: 

procedure TForm1.FormCreate(Sender: TObject);
begin
Series2.FillSampleValues(4);
Series2.ArrowHeight := 4;
Series2.ArrowWidth := 4;
Series2.ArrowPercent := 75;
end;
Comment 1 david berneda 2023-03-17 11:42:16 EDT
Arrow property that controls the border of the arrow (both in 2D and 3D, Filled=True and Filled=False), is :

Series1.Pointer.Pen.Width := 3