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 - [TV52016511] Having a TFastLineSeries with DrawAllPoints=false and Marks.Visible, ...
Summary: [TV52016511] Having a TFastLineSeries with DrawAllPoints=false and Marks.Visi...
Status: RESOLVED WORKSFORME
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: unspecified
Hardware: All All
: Normal major
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-02-11 16:09 EST by yeray alonso
Modified: 2015-03-25 10:46 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 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)]