Search found 9702 matches

by Yeray
Fri Jun 27, 2025 9:18 am
Forum: VCL
Topic: Selected color in TTreeView
Replies: 2
Views: 1710

Re: Selected color in TTreeView

Sorry, did you write TTreeView by mistake?
Note TTreeView is the component from Embarcadero while TTeeTree is the component from Steema Software shipped with TeeChart.

CompareSpeed demo
by Yeray
Fri Jun 27, 2025 9:05 am
Forum: VCL
Topic: Selected color in TTreeView
Replies: 2
Views: 1710

Re: Selected color in TTreeView

Hello,

We'll revise it and we'll be back to you asap.
by Yeray
Thu Jun 26, 2025 3:42 pm
Forum: VCL / FMX
Topic: Error message : Identifier not found "vkSpace"
Replies: 2
Views: 519

Re: Error message : Identifier not found "vkSpace"

Hello,

I've just sent you mail with the link to download the same zip I prepared for another customer, which contains a fix for that error, and the password to extract it.
by Yeray
Thu Jun 26, 2025 10:51 am
Forum: VCL
Topic: Integration with QuickReport v7?
Replies: 3
Views: 1341

Re: Integration with QuickReport v7?

Hello Toreba,

Check if you have a QrTee unit in any of the folders in your "Library path" and make sure the first to be found is the one you just compiled.
by Yeray
Thu Jun 26, 2025 8:18 am
Forum: VCL
Topic: Legend.Style=lsLastValues does not work since last release
Replies: 1
Views: 579

Re: Legend.Style=lsLastValues does not work since last release

Hello, Yes, that was bug in v2025.44, 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 SetAlign(const Value:TCanvas...
by Yeray
Wed Jun 25, 2025 2:10 pm
Forum: VCL
Topic: Pie Chart Legend bug or my missing call?
Replies: 17
Views: 4137

Re: Pie Chart Legend bug or my missing call?

I've added a Pie to your sample project and I've set it to 2D.
This is how the pdf looks for me here:
yWt17naeFB.png
yWt17naeFB.png (55.89 KiB) Viewed 557 times
by Yeray
Wed Jun 25, 2025 2:06 pm
Forum: VCL
Topic: Pie Chart Legend bug or my missing call?
Replies: 17
Views: 4137

Re: Pie Chart Legend bug or my missing call?

Hello John, I've observed there seems to be a problem with the Chart Title alignment. I'm investigating it. I've identified it ( #2770 ) and I've also fixed it. Here the diff: --- a/Chart.pas +++ b/Chart.pas @@ -2375,7 +2375,7 @@ Begin else tmpVPos:={$IFDEF FMX}Round{$ENDIF}(ParentChart.ChartRect.Bo...
by Yeray
Wed Jun 25, 2025 7:34 am
Forum: VCL
Topic: Pie Chart Legend bug or my missing call?
Replies: 17
Views: 4137

Re: Pie Chart Legend bug or my missing call?

Hello,

Sorry for the delayed reply here.
I've observed there seems to be a problem with the Chart Title alignment. I'm investigating it.
by Yeray
Fri Jun 20, 2025 1:56 pm
Forum: VCL
Topic: Create horizonal bar chart with captions
Replies: 1
Views: 1742

Re: Create horizonal bar chart with captions

Hello, Here a simple example using TeeChart: HorizBars.png uses Chart, Series, TeEngine, TeeProcs, TeeTools; var Chart1: TChart; procedure TForm1.FormCreate(Sender: TObject); const myData: array[0..3] of array[0..3] of double = ((2.5, 0.5, 0.5, 0), (1.75, 0.5 / 3, 0.5 / 3, (0.5 / 3) + 1.25), (1.5, 0...
by Yeray
Fri Jun 20, 2025 6:03 am
Forum: VCL
Topic: Integration with QuickReport v7?
Replies: 3
Views: 1341

Re: Integration with QuickReport v7?

Hello Toreba,

Give it a try at this:
Tee9QR7D29.zip
by Yeray
Thu Jun 19, 2025 6:30 am
Forum: VCL / FMX
Topic: How to build TeeGrid in Lazarus Linux
Replies: 5
Views: 5675

Re: How to build TeeGrid in Lazarus Linux

Hello,

Sorry there was an error in the sources for Lazarus in TeeGrid 1.18. The fix is already in our internal codebase but I had to apply it manually to that zip.
Please download it again.
by Yeray
Wed Jun 18, 2025 3:15 pm
Forum: VCL
Topic: Pie Chart Legend bug or my missing call?
Replies: 17
Views: 4137

Re: Pie Chart Legend bug or my missing call?

Hello,

I'm not sure to understand the problems you are experiencing with printing.
Could you please arrange a simple example project we can run as-is to reproduce the problem here?
Thanks in advance.
by Yeray
Wed Jun 18, 2025 10:36 am
Forum: VCL / FMX
Topic: How to build TeeGrid in Lazarus Linux
Replies: 5
Views: 5675

Re: How to build TeeGrid in Lazarus Linux

Hello,

I've just sent you a mail with the link to download the zip and the password to extract it.
by Yeray
Wed Jun 18, 2025 8:29 am
Forum: VCL
Topic: Pie Chart Legend bug or my missing call?
Replies: 17
Views: 4137

Re: Pie Chart Legend bug or my missing call?

Hello John, Sorry. This is the fix for that error: --- a/Chart.pas +++ b/Chart.pas @@ -5523,6 +5523,9 @@ end; procedure TLegendItem.FontChanged(Sender: TObject); begin SetCustom(False); + + if Assigned(ILegend) then + ILegend.CanvasChanged(Sender); end; function TLegendItem.GetFont:TTeeFont; @@ -554...
by Yeray
Tue Jun 17, 2025 8:12 pm
Forum: VCL
Topic: Pie Chart Legend bug or my missing call?
Replies: 17
Views: 4137

Re: Pie Chart Legend bug or my missing call?

Hello John, I've seen the fix for #1210 in TeeChart v2025.44 breaks this. We are revising it. I came up with this fix: --- a/Chart.pas +++ b/Chart.pas @@ -418,6 +418,7 @@ type ILegend : TCustomChartLegend; + procedure FontChanged(Sender: TObject); function GetFont:TTeeFont; procedure SetAlign(const ...