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 1674

Summary: Change style of hover in legend
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: LegendAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: enhancement CC: anthony.moyer
Priority: ---    
Version: 20.170306   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://www.teechart.net/support/viewtopic.php?f=3&t=16316
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2016-11-04 08:24:07 EDT
Using the simple code below, moving the mouse over the legend items, the item selected turns into red, but not bold:

uses Series;

procedure TForm1.FormCreate(Sender: TObject);
begin
  Chart1.AddSeries(TBarSeries).FillSampleValues;

  with Chart1.Legend.Selected.Hover.Font do
    Style:=Style+[fsBold];
end;