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 - Many Arrow Series properties don’t work by code
Summary: Many Arrow Series properties don’t work by code
Status: RESOLVED FIXED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: 23.171221
Hardware: PC Windows
: Normal normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-03-20 06:41 EDT by sandra pazos
Modified: 2023-03-17 11:42 EDT (History)
1 user (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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