Search found 9531 matches

by Yeray
Mon Apr 08, 2024 1:35 pm
Forum: JavaScript / HTML5
Topic: PointXY - Tooltip
Replies: 1
Views: 234

Re: PointXY - Tooltip

Hello, I would like to inquire about a solution so that the tooltip is displayed only when the mouse pointer is placed on the chart pointer. Try setting continuous property to false . Ie: for (var t=0; t<list.length; t++) { xyLine = chart.addSeries(new Tee.PointXY()); xyLine.pointer.visible=true; xy...
by Yeray
Mon Apr 08, 2024 1:15 pm
Forum: VCL
Topic: Download Version TeeChartVCLFMXStandard-2023.39.exe
Replies: 3
Views: 430

Re: Download Version TeeChartVCLFMXStandard-2023.39.exe

Hello,

Sorry, we've migrated the website to a new server and we are encountering some errors like those.
We are working on it.
by Yeray
Mon Apr 08, 2024 1:14 pm
Forum: VCL
Topic: Downloads are not working
Replies: 3
Views: 214

Re: Downloads are not working

Hello,

Sorry, we've migrated the website to a new server and we are encountering some errors like those.
We are working on it.
by Yeray
Fri Apr 05, 2024 9:55 am
Forum: VCL
Topic: How to get correct Legend for ColorGrid AND Line Series
Replies: 7
Views: 397

Re: How to get correct Legend for ColorGrid AND Line Series

Hello, I am setting the Position in the Create of the form but it looks like I need to update the position of the extra legend before the painting. Yes, that's why I called Draw before creating the TExtraLegendTool at OnCreate in the example above. One other quick question, how can I change/influenc...
by Yeray
Thu Apr 04, 2024 8:42 pm
Forum: VCL
Topic: How to get correct Legend for ColorGrid AND Line Series
Replies: 7
Views: 397

Re: How to get correct Legend for ColorGrid AND Line Series

Hello, You could do something similar to the discussed here . uses TeEngine, Chart, Series, TeeSurfa, TeeExtraLegendTool; type TMyExtraLegendTool=class(TExtraLegendTool) protected procedure ChartEvent(AEvent: TChartToolEvent); override; end; TLegendAccess=class(TChartLegend); var Chart1: TChart; pro...
by Yeray
Thu Apr 04, 2024 7:12 am
Forum: VCL
Topic: How to get correct Legend for ColorGrid AND Line Series
Replies: 7
Views: 397

Re: How to get correct Legend for ColorGrid AND Line Series

Hello,

When the legend shows the palette, I don't see a lot of space to show any other item. Then, the ExtraLegendTool may be the most appropriate solution for this.
See the example here.
by Yeray
Thu Apr 04, 2024 6:17 am
Forum: FMX
Topic: Problem recompiling FMX packages with TeeRecompile.exe
Replies: 2
Views: 265

Re: Problem recompiling FMX packages with TeeRecompile.exe

Hello,

I think there was a bug in TeeRecompile.
Could you please give a try at the version here?
by Yeray
Wed Apr 03, 2024 6:26 am
Forum: VCL
Topic: !! V2023.39.231109 Critical Performance issues !!
Replies: 7
Views: 939

Re: !! V2023.39.231109 Critical Performance issues !!

Hello Andy,

We are internally discussing about it. I'm afraid I can't tell you when this will be fixed.
by Yeray
Wed Apr 03, 2024 5:55 am
Forum: VCL
Topic: D12 and (Font) Scaling and Printing
Replies: 5
Views: 1103

Re: D12 and (Font) Scaling and Printing

Hello,

I'm sorry for the delay replying here.
But I'm glad to hear you found the solution yourself. And thanks for sharing it!
by Yeray
Wed Mar 27, 2024 11:45 am
Forum: VCL
Topic: D12 and (Font) Scaling and Printing
Replies: 5
Views: 1103

Re: D12 and (Font) Scaling and Printing

Hello,

I've copied your code to a simple example with just a THorizBarSeries, and this is how it looks for me:
ScalingGraphic.zip
(2.29 KiB) Downloaded 1062 times
At 100%:
scalingGraphic.png
scalingGraphic.png (18.55 KiB) Viewed 1082 times
At 175%, the forums seem to rescale the image - open it in a new tab to see the real size:
scalingGraphic_175.png
scalingGraphic_175.png (41.03 KiB) Viewed 1082 times
by Yeray
Wed Mar 27, 2024 9:55 am
Forum: VCL
Topic: v2023.39 (231109) y-axis label issue
Replies: 6
Views: 733

Re: v2023.39 (231109) y-axis label issue

Hello,

Indeed setting Increment to 1 was the key to reproduce the problem.
I've added it to the public tracker: #2690
by Yeray
Tue Mar 26, 2024 1:13 pm
Forum: VCL
Topic: 2023.39 TeeRecompile Command Line for D12 failing
Replies: 1
Views: 550

Re: 2023.39 TeeRecompile Command Line for D12 failing

Hello,

There was a bug in TeeRecompile. Give it a try at this version:
https://www.steema.com/files/private/tm ... 240326.zip
by Yeray
Fri Mar 22, 2024 3:40 pm
Forum: VCL
Topic: v2023.39 (231109) y-axis label issue
Replies: 6
Views: 733

Re: v2023.39 (231109) y-axis label issue

Hello, I've tried to reproduce the problem with this simple example code without success. uses Chart, Series; var Chart1: TChart; procedure TForm1.FormCreate(Sender: TObject); var i: Integer; begin Chart1:=TChart.Create(Self); with Chart1 do begin Parent:=Self; Align:=alClient; Color:=clWhite; Gradi...
by Yeray
Fri Mar 22, 2024 1:14 pm
Forum: FMX
Topic: installation problems
Replies: 2
Views: 1108

Re: installation problems

Hello, The error message "Cannot load package *Tee*. It contains unit *, which is also contained in package *Tee*", where any of the *Tee* packages ends with a "0" (*Tee*0), indicates that the TeeChart Standard/Lite package that was shipped with the IDE (*Tee*0) is still trying to be loaded, and thi...
by Yeray
Fri Mar 15, 2024 7:58 am
Forum: VCL
Topic: Teechart legend color series
Replies: 1
Views: 610

Re: Teechart legend color series

Hello, Do you have a simple example project we can run as-is to reproduce the problem here? This seems to work as expected here: uses Chart, Series; var Chart1: TChart; procedure TForm1.FormCreate(Sender: TObject); var i: Integer; begin Chart1:=TChart.Create(Self); with Chart1 do begin Parent:=Self;...