Search found 9721 matches

by Yeray
Wed Aug 20, 2025 7:17 am
Forum: VCL
Topic: List Index out of bounds...TChartTools
Replies: 2
Views: 1240

Re: List Index out of bounds...TChartTools

Hello, Difficult to say without the code. I guess you may be accessing the list of tools with an out of range index. To prevent that, you can add an if condition before accessing it. Ie: var toolIndex: Integer; begin toolIndex:=myIndex; if toolIndex >= Chart1.Tools.Count then Exit; // Now it should ...
by Yeray
Wed Aug 20, 2025 7:09 am
Forum: VCL
Topic: How to add Text to annotation of ColorLineTool
Replies: 6
Views: 3112

Re: How to add Text to annotation of ColorLineTool

Hello, Oups that was a spoiler of a new functionality for the next release. Currently, to draw transparent shapes you need manually call BeginBlending and EndBlending . Ie: uses Chart, Series, TeeTools, TeCanvas; //... procedure TForm1.BeforeDrawAxes(Sender: TObject); var rect: TRect; blend: TTeeBle...
by Yeray
Tue Aug 19, 2025 9:20 am
Forum: VCL
Topic: How to add Text to annotation of ColorLineTool
Replies: 6
Views: 3112

Re: How to add Text to annotation of ColorLineTool

Hello, Assuming you know you have those ColorLine tools, you can use them to calculate the rectangle and draw it at OnBeforeDrawAxes event. Ie: quadrant.png uses Chart, Series, TeeTools; var Chart1: TChart; HorizLine, VertLine: TColorLineTool; procedure TForm1.FormCreate(Sender: TObject); begin Char...
by Yeray
Tue Aug 19, 2025 6:51 am
Forum: VCL / FMX
Topic: TeeGrid, android
Replies: 1
Views: 5818

Re: TeeGrid, android

Hello, At the TStringGrid demo, the OnSelect event is used as follows to get the row and other info from the clicked/tapped cell: // Called when selecting a cell, by mouse click, touch, or arrow keys procedure TStringGridForm.TeeGrid1Select(Sender: TObject); var tmp : TGridSelection; begin tmp:=TeeG...
by Yeray
Mon Aug 18, 2025 2:22 pm
Forum: VCL
Topic: How to add Text to annotation of ColorLineTool
Replies: 6
Views: 3112

Re: How to add Text to annotation of ColorLineTool

Hello Thomas,

Try setting AnnotationValue to False.
by Yeray
Fri Aug 01, 2025 2:28 pm
Forum: VCL
Topic: Installation problem linux
Replies: 1
Views: 2822

Re: Installation problem linux

Hello,

Take a look at this guide.
by Yeray
Fri Aug 01, 2025 7:41 am
Forum: VCL
Topic: calcuate text width for Gant Series
Replies: 1
Views: 3155

Re: calcuate text width for Gant Series

Hello, This looks more a matter of calculating the width of the axis label than the gantt series. I'd suggest you to take a look a the PlaceAxis method I implemented time ago ( here ). It should allow you to set the margin your axis labels require. If you still find problems with it, please don't he...
by Yeray
Tue Jul 29, 2025 8:20 am
Forum: VCL
Topic: Exceptions with Version 2025.44
Replies: 4
Views: 4188

Re: Exceptions with Version 2025.44

Hello,

Yes, we'll publish new installers as soon as possible.
by Yeray
Tue Jul 29, 2025 7:24 am
Forum: VCL
Topic: Problems version 2025.44
Replies: 1
Views: 3465

Re: Problems version 2025.44

Hello Ana, Looking at the log, it's highly possible that's a side effect of a bug in v2025.44 ( #2777 ), which was identified and fixed here . Find below the full git diff: --- a/Chart.pas +++ b/Chart.pas @@ -418,6 +418,7 @@ type ILegend : TCustomChartLegend; + procedure FontChanged(Sender: TObject)...
by Yeray
Tue Jul 29, 2025 7:22 am
Forum: VCL
Topic: Exceptions with Version 2025.44
Replies: 4
Views: 4188

Re: Exceptions with Version 2025.44

Hello, Yes, that's a side effect of a bug in v2025.44 ( #2777 ), which was identified and fixed here . Find below the full git diff: --- a/Chart.pas +++ b/Chart.pas @@ -418,6 +418,7 @@ type ILegend : TCustomChartLegend; + procedure FontChanged(Sender: TObject); function GetFont:TTeeFont; procedure S...
by Yeray
Mon Jul 28, 2025 9:58 am
Forum: VCL / FMX
Topic: TeeGrid Colors
Replies: 5
Views: 12664

Re: TeeGrid Colors

Hello,

I believe you only missed to set the ParentFont to False. This works for me (sorry for the colors chosen 8) ):

Code: Select all

  TeeGrid1.Selected.ParentFont:=False;
  TeeGrid1.Selected.Format.Font.Color:=clRed;

  TeeGrid1.Selected.Format.Brush.Color:=clGreen;
by Yeray
Wed Jul 23, 2025 2:46 pm
Forum: FMX
Topic: Error : F2051 (Android (Application Store) )
Replies: 4
Views: 28031

Re: Error : F2051 (Android (Application Store) )

Hello,

I've seen there's a problem in TeeRecompile/TeeInstall that makes the backup of the Lite version shipped with the IDE not to be done correctly for android 32 bits.
You should be able to workaround this by moving the library path to the top of the list:
librarypath.png
librarypath.png (100.76 KiB) Viewed 26662 times
by Yeray
Mon Jul 21, 2025 6:14 am
Forum: VCL
Topic: Move a dynamically allocated FastLIneSeries BEHIND another FastLineSeries
Replies: 1
Views: 17584

Re: Move a dynamically allocated FastLIneSeries BEHIND another FastLineSeries

Hello,

You can change the series order with the ExchangeSeries method:

Code: Select all

  TChart1->ExchangeSeries(1,2);
by Yeray
Fri Jul 18, 2025 1:36 pm
Forum: FMX
Topic: Error : F2051 (Android (Application Store) )
Replies: 4
Views: 28031

Re: Error : F2051 (Android (Application Store) )

Hello,

I get that same error in Android 32-bit, but I get it for both "Development" and "Application Store" Configurations.
On the other hand, it seems to work fine for me here in Android 64-bit, for both Configurations.

Could you please double check to confirm we are in the same situation?
by Yeray
Fri Jul 18, 2025 11:15 am
Forum: VCL
Topic: Axis Labels not drawing
Replies: 2
Views: 11806

Re: Axis Labels not drawing

Hello, I've added it to the public tracker: #2775 . And already fixed it. labelsalternate.png Here the diff if you want to apply it in your sources: --- a/TeEngine.pas +++ b/TeEngine.pas @@ -6963,11 +6963,11 @@ var var tmpLabelSize : Integer; tmpLabelW : Boolean; - OldPosLabel : Integer; tmp : Integ...