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 2271

Summary: HighLow series drawing wrong brush when using a custom axis
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: SeriesAssignee: yeray alonso <yeray>
Status: RESOLVED FIXED    
Severity: enhancement    
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: https://www.steema.com/support/viewtopic.php?f=3&t=17273#p76803
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2019-12-17 07:27:02 EST
The customer attached a C++Builder project to reproduce the problem in the forums.
Here a simple example in Delphi:

uses ErrorBar;

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

  with THighLowSeries(Chart1.AddSeries(THighLowSeries)) do
  begin
    FillSampleValues(10);
    HighBrush.Color:=clRed;
    LowBrush.Color:=clLime;

    CustomVertAxis:=Chart1.CustomAxes.Add;
  end;
end;