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 - When you print Chart with a Circular Gauge, the circled property is set to false.
Summary: When you print Chart with a Circular Gauge, the circled property is set to fa...
Status: RESOLVED FIXED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Print (show other bugs)
Version: 20.170306
Hardware: PC Windows
: Normal normal
Target Milestone: v2017.20
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-01-10 10:54 EST by sandra pazos
Modified: 2017-03-17 05:19 EDT (History)
2 users (show)

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 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.