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 184

Summary: [TV52014688] Series' marks arrow and callout are printed at the wrong position. Se...
Product: VCL TeeChart Reporter: narcís calvet <narcis>
Component: Other ComponentsAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: major    
Priority: Normal    
Version: unspecified   
Target Milestone: ---   
Hardware: All   
OS: All   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description narcís calvet 2013-11-20 10:02:19 EST
Series' marks arrow and callout are printed at the wrong position. See attached PDF document with printing output and original chart image. When setting "Smoothed" printing works fine.
Code to reproduce:
uses Series;

procedure TForm1.FormCreate(Sender: TObject);
var Series1: TLineSeries;
begin
 Series1:=TLineSeries.Create(Self);
 Chart1.AddSeries(Series1);
 Series1.FillSampleValues;

 Series1.Marks.Visible:=True;
 Series1.Marks.Callout.Visible:=True;
 Series1.Marks.Arrow.Visible:=True;
 Series1.Marks.Arrow.Color:=clRed;
 Series1.Marks.ArrowLength:=30;
end; [created:2010-02-16T16:41:52.000+01:00 reported by:narcis@steema.com reported in version:8.06.60902 (TeeChart VCL)]