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 224

Summary: [TV52016511] Having a TFastLineSeries with DrawAllPoints=false and Marks.Visible, ...
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: SeriesAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED WORKSFORME    
Severity: major CC: narcis
Priority: Normal    
Version: unspecified   
Target Milestone: ---   
Hardware: All   
OS: All   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2013-11-20 10:33:15 EST
Having a TFastLineSeries with DrawAllPoints=false and Marks.Visible, if you scroll dragging the mouse to the right until no point is visible, the program crashes.
uses Series;
procedure TForm1.FormCreate(Sender: TObject);
begin
  Chart1.View3D:=false;
  with Chart1.AddSeries( TFastLineSeries ) as TFastLineSeries do
  begin
    FillSampleValues();
    DrawAllPoints := False;
    Marks.Visible:=true;
  end;
end;
http://www.teechart.net/support/viewtopic.php?f=3&t=13828&view=unread#unread [created:2013-02-11T16:09:12.000+01:00 reported by:yeray@steema.com reported in version:2012.07.121105 (TeeChart VCL)]