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 - [TV52014688] Series' marks arrow and callout are printed at the wrong position. Se...
Summary: [TV52014688] Series' marks arrow and callout are printed at the wrong positio...
Status: CONFIRMED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Other Components (show other bugs)
Version: unspecified
Hardware: All All
: Normal major
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-02-16 16:41 EST by narcís calvet
Modified: 2013-11-20 10:02 EST (History)
0 users

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 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)]