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 2748 - FMX TeeChart TRadioGroup + TRadioButton control causes Delphi 12.2 Athens to crash
Summary: FMX TeeChart TRadioGroup + TRadioButton control causes Delphi 12.2 Athens to ...
Status: CONFIRMED
Alias: None
Product: FireMonkey TeeChart
Classification: Unclassified
Component: Editors (show other bugs)
Version: 42.241021
Hardware: PC Windows
: High critical
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-11-22 04:40 EST by stuart.hobday
Modified: 2025-04-10 02:50 EDT (History)
1 user (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version: RAD 12 Athens


Attachments
Instructions for replicating the issue (229.84 KB, application/vnd.openxmlformats-officedocument.wordprocessingml.document)
2024-11-22 04:40 EST, stuart.hobday
Details

Note You need to log in before you can comment on or make changes to this bug.
Description stuart.hobday 2024-11-22 04:40:12 EST
Created attachment 1082 [details]
Instructions for replicating the issue

Please see attached document for details

Environment:

Windows 11 Pro
Delphi 12.2 Athens with patch 2

Additional 3rd party components:
FastReport VCL (Trial/Eval version)
MadExcept
TMS VCL UI Pack
TMS FNC UI Pack (Trial/Eval version)
Comment 1 yeray alonso 2025-04-10 02:50:27 EDT
Confirmed. I reproduced a StackOverflow exception with this code:

uses FMXTee.RadioGroup;

var RadioGroup1: TRadioGroup;
    RadioButton1: TRadioButton;

procedure TForm1.FormCreate(Sender: TObject);
begin
  RadioGroup1:=TRadioGroup.Create(Self);
  RadioGroup1.Parent:=Self;
  RadioGroup1.Align:=TAlignLayout.Client;

  RadioButton1:=TRadioButton.Create(Self);
  RadioButton1.Parent:=RadioGroup1;
  RadioButton1.Name:='RadioBtn';
  RadioButton1.Margins.Top:=20;
  RadioButton1.Align:=TAlignLayout.Top;
end;