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 2296

Summary: Access Violation in editor when using psVisual pointer style
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: EditorsAssignee: yeray alonso <yeray>
Status: RESOLVED FIXED    
Severity: enhancement    
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2020-03-13 06:48:24 EDT
In a chart with a TPointSeries with psVisual pointer style, just open the Editor or use a TChartListBox. Ie:

procedure TForm1.FormCreate(Sender: TObject);
begin
  Chart1.View3D:=False;
  Chart1.Legend.Hide;

  with TPointSeries(Chart1.AddSeries(TPointSeries)) do
  begin
    Pointer.Style:=psVisual;
    FillSampleValues(10);
  end;

  ChartListBox1.Chart:=Chart1;
end;