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 1908

Summary: Legend VertSpacing breaks Legend Symbol Squareness
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: LegendAssignee: yeray alonso <yeray>
Status: RESOLVED FIXED    
Severity: enhancement    
Priority: ---    
Version: 19.161025   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://www.teechart.net/support/viewtopic.php?f=3&t=16662
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2017-08-23 07:17:37 EDT
This simple example shows rectangular symbols in the legend, not squared:

uses Series;

procedure TForm1.FormCreate(Sender: TObject);
var i: Integer;
begin
  for i:=0 to 3 do
    Chart1.AddSeries(TBarSeries);

  Chart1.Legend.Symbol.Squared:=True;
  Chart1.Legend.VertSpacing:=40;
end;