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 - Pie Series brush is setting grey when is active the UsePattern property.
Summary: Pie Series brush is setting grey when is active the UsePattern property.
Status: CONFIRMED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: unspecified
Hardware: PC Windows
: Normal normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-12-12 06:14 EST by sandra pazos
Modified: 2018-12-12 06:14 EST (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 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;