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 2131

Summary: Pie Series brush is setting grey when is active the UsePattern property.
Product: VCL TeeChart Reporter: sandra pazos <sandra>
Component: SeriesAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: normal    
Priority: Normal    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description sandra pazos 2018-12-12 06:14:31 EST
Pie Series brush is setting grey when is active the UsePattern property.

The code below reproduces the problem: 
uses VCLTee.TeCanvas;
procedure TForm2.FormCreate(Sender: TObject);
begin
  Series1.FillSampleValues();
  Series1.ColorEachPoint:=false;
  Series1.UsePatterns := true;
  Series1.Brush.Style := bsClear;
  Series1.Brush.HatchStyle := hsHorizontal;
end;