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 1742

Summary: When you print Chart with a Circular Gauge, the circled property is set to false.
Product: VCL TeeChart Reporter: sandra pazos <sandra>
Component: PrintAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: normal CC: marc, nilsboje14
Priority: Normal    
Version: 20.170306   
Target Milestone: v2017.20   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description sandra pazos 2017-01-10 10:54:56 EST
When you print Chart with a Circular Gauge, the circled property is set to false although the circled is forced true. 
The code below shows the problem: 
uses VCLTee.TeeNumericGauge,VCLTee.TeeLinearGauge, VCLTee.TeeCircularGauge;
var Series1:TCircularGauge;
procedure TForm1.FormCreate(Sender: TObject);
begin
Series1 := TCircularGauge.Create(Self);
Chart1.AddSeries(Series1);
Series1.Circled := true;
Chart1.Print;
end;
Comment 1 marc meumann 2017-01-25 11:44:42 EST
code fix for inclusion with next maintenance release VCL/FMX and AX versions.