Search found 9647 matches

by Yeray
Tue Mar 18, 2025 8:52 am
Forum: VCL
Topic: RADStudio 12.3 support
Replies: 6
Views: 710

Re: RADStudio 12.3 support

Hello,

That's strange, it seems to work fine for me here:
mstsc_1oyhCtwaH8.png
mstsc_1oyhCtwaH8.png (127.35 KiB) Viewed 566 times
mstsc_brEu7sExwO.png
mstsc_brEu7sExwO.png (279.38 KiB) Viewed 566 times
by Yeray
Tue Mar 18, 2025 7:21 am
Forum: VCL
Topic: RADStudio 12.3 support
Replies: 6
Views: 710

Re: RADStudio 12.3 support

Hello, If I use version with source code, TeeRecompile tool working correctly? Yes, TeeRecompile shipped with TeeChart v2024.42 with source code builds and installs TeeChart correctly in RAD 12.3. Does it see RAD Studio 12.3 IDE or is it required to build packages manually? The label in the tree doe...
by Yeray
Mon Mar 17, 2025 1:34 pm
Forum: VCL
Topic: RADStudio 12.3 support
Replies: 6
Views: 710

Re: RADStudio 12.3 support

Hello,

Yes, the latest TeeChart version, v2024.42, is binary compatible with RAD 12.3.
by Yeray
Mon Mar 17, 2025 1:09 pm
Forum: VCL
Topic: BottomAxis.LabelsFont.Name
Replies: 1
Views: 3924

Re: BottomAxis.LabelsFont.Name

Hello, Make sure the font is installed in your system. This works fine for me here: uses Chart, Series; var Chart1: TChart; procedure TForm1.FormCreate(Sender: TObject); begin Chart1:=TChart.Create(Self); with Chart1 do begin Parent:=Self; Align:=alClient; Color:=clWhite; Gradient.Visible:=False; Wa...
by Yeray
Mon Mar 17, 2025 12:14 pm
Forum: VCL
Topic: TeeChart v12.3
Replies: 1
Views: 207

Re: TeeChart v12.3

Hello,

The latest TeeChart version (v2024.42) is binary compatible with RAD 12.3.
by Yeray
Mon Mar 17, 2025 12:13 pm
Forum: VCL
Topic: Runtime error when using TQRChart in C++ Builder 12.1 (64 bit)
Replies: 3
Views: 4852

Re: Runtime error when using TQRChart in C++ Builder 12.1 (64 bit)

Hello,

I've just rebuilt QuickReport v6, and TQRChart with RAD 12.3 and it seems to work fine in C++Builder Windows-64 here.
Tee9QR6D29.zip
(228.7 KiB) Downloaded 52 times
by Yeray
Wed Mar 12, 2025 1:21 pm
Forum: FMX
Topic: Additional export formats in PRO do not work
Replies: 6
Views: 32137

Re: Additional export formats in PRO do not work

Hello,

I've been able to reproduce the problem with a simple example project so I've added it to the public tracker: #2763
by Yeray
Tue Mar 11, 2025 10:18 am
Forum: VCL
Topic: Distance between axis tick and label text, and more questions
Replies: 25
Views: 90888

Re: Distance between axis tick and label text, and more questions

Hello, In your example the TChart leaves enough space at the top even with saCustom for the Align property, so that the scrollpager's chart fits into the 'gap'. In my project the TChart does not reserve space for the Scrollpager if the Align property is set to saCustom. The DivisionRatio property se...
by Yeray
Tue Mar 11, 2025 8:05 am
Forum: VCL
Topic: Runtime error when using TQRChart in C++ Builder 12.1 (64 bit)
Replies: 3
Views: 4852

Re: Runtime error when using TQRChart in C++ Builder 12.1 (64 bit)

Hello, Apologies for the delayed reply. I am encountering issues running QuickReport with RAD 12.2 Athens in a simple VCL C++Builder project targetting Windows 64-bit. When launching the project, I receive the following error: "Unable to create process: 'Win32 error code: 0x0000139'." I'll check if ...
by Yeray
Thu Feb 27, 2025 1:51 pm
Forum: FMX
Topic: Additional export formats in PRO do not work
Replies: 6
Views: 32137

Re: Additional export formats in PRO do not work

Hello,
ufu wrote:
Wed Feb 26, 2025 8:45 pm
I am using TeeChart for FireMonkey (FMX) in Delphi.
What TeeChart version are you using?
by Yeray
Tue Feb 25, 2025 10:03 am
Forum: VCL
Topic: Distance between axis tick and label text, and more questions
Replies: 25
Views: 90888

Re: Distance between axis tick and label text, and more questions

Hello, You could set your TScrollPagerTool.Align to saCustom and then set the its positions manually at the same PlaceAxes method: with ScrollPagerTool.SubChartTool.Charts[0] do begin Top:=0; Left:=0; Width:=Chart1.Width; Height:=Round(Chart1.Height / ScrollPagerTool.DivisionRatio); Chart.MarginUnit...
by Yeray
Tue Feb 18, 2025 12:40 pm
Forum: VCL
Topic: Distance between axis tick and label text, and more questions
Replies: 25
Views: 90888

Re: Distance between axis tick and label text, and more questions

Hello,

I've made a variant of that AutoAxes example with an improved version of the PlaceAxes function, which is now called at the OnBeforeDraw event.
AutoAxes.png
AutoAxes.png (73.47 KiB) Viewed 21449 times
AutoAxes.zip
(2.41 KiB) Downloaded 1117 times
by Yeray
Tue Feb 11, 2025 11:20 am
Forum: VCL
Topic: Distance between axis tick and label text, and more questions
Replies: 25
Views: 90888

Re: Distance between axis tick and label text, and more questions

Hello, In your example (https://www.steema.com/support/viewtopi ... 289#p81015) I do not understand how to calculate the values dynamically if the number of axes changes. That was a simple example to demonstrate how to place the axes to draw the series without the axes overlapping the series. Of cou...
by Yeray
Mon Feb 10, 2025 7:01 am
Forum: VCL
Topic: TeeChart has continuous active wheel
Replies: 1
Views: 6093

Re: TeeChart has continuous active wheel

Hello Bruce,

You could share that chart with us to see if the problem is with some chart setting itself. To do so, you can open the editor and export the chart to a tee file.
by Yeray
Mon Feb 03, 2025 11:19 pm
Forum: VCL
Topic: Distance between axis tick and label text, and more questions
Replies: 25
Views: 90888

Re: Distance between axis tick and label text, and more questions

Hello, So, if one changes e.g. data of the series of the main chart, one needs to apply the changes manually to the 'corresponding' series of the scroll pager's subchart, too? Or is there an automatism in the background, that updates/synchronizes a Scrollpager's series with the one of the main chart...