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 979 - Chart Color changing when mouse moves over the arrows in the TLegendScrollBar
Summary: Chart Color changing when mouse moves over the arrows in the TLegendScrollBar
Status: CONFIRMED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Tools (show other bugs)
Version: 140923
Hardware: PC Windows
: Normal normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://stackoverflow.com/questions/26...
Keywords:
Depends on:
Blocks:
 
Reported: 2014-10-23 07:40 EDT by yeray alonso
Modified: 2014-10-23 07:43 EDT (History)
0 users

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 2014-10-23 07:40:54 EDT
Reproducible with the following simple application.
When you move the mouse over the arrows in the LegendScrollBar, they seem to be redrawn changing the whole Chart Color as well.

uses TeeLegendScrollBar;

procedure TForm1.FormCreate(Sender: TObject);
var i: Integer;
begin
  Chart1.Gradient.Visible:=false;
  Chart1.Walls.Back.Transparent:=true;

  for i:=0 to 10 do
    Chart1.AddSeries(TBarSeries);

  Chart1.Tools.Add(TLegendScrollBar);
  Chart1.Legend.MaxNumRows:=Chart1.SeriesCount div 2;
end;