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 1761

Summary: Using the TLegendScrollBar makes the chart to disappear
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: ToolsAssignee: yeray alonso <yeray>
Status: RESOLVED FIXED    
Severity: enhancement    
Priority: ---    
Version: 20.170306   
Target Milestone: v2017.20   
Hardware: PC   
OS: Windows   
URL: http://www.teechart.net/support/viewtopic.php?f=5&t=16407
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2017-02-01 06:01:59 EST
Using the TLegendScrollBar makes the chart to disappear

This appeared in v2016.19.
Seems to appear with the fix for #1643.

uses Series, TeeLegendScrollBar;

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

  Chart1.AddSeries(TPointSeries).FillSampleValues(50);

  Chart1.Tools.Add(TLegendScrollBar);
end;