Search found 9526 matches

by Yeray
Tue Apr 16, 2024 8:03 am
Forum: JavaScript / HTML5
Topic: I would like to inquire about how to apply a legend to a ColorGrid chart.
Replies: 1
Views: 88

Re: I would like to inquire about how to apply a legend to a ColorGrid chart.

Hello, The simplest way could be adding a dummy Line series to draw those items in the legend. Add the Line series before adding the ColorGrid : var line = Chart1.addSeries(new Tee.Line()); line.data.values = [1200, 1150, 1100, 1050, 1000, 950, 900]; line.colorEach = "yes"; Tune the legend and the l...
by Yeray
Mon Apr 15, 2024 11:42 am
Forum: FMX
Topic: reporting two tdbchart bugs
Replies: 3
Views: 41

Re: reporting two tdbchart bugs

Hello, I'm trying to reproduce the problem in a simple example project without success. This is the closest I can get to your screenshot with a simple example: LegendDataSet.png uses Chart, DBChart, Series, Engine, FireDAC.Comp.Client; var Chart1: TDBChart; var MemTable1: TFDMemTable; procedure TFor...
by Yeray
Mon Apr 15, 2024 9:40 am
Forum: FMX
Topic: reporting two tdbchart bugs
Replies: 3
Views: 41

Re: reporting two tdbchart bugs

Hello, 1) If I create multiple series in the groups and delete one from that moment the series counter displays the references incorrectly (serial number error.png) When you create a series, no Name is set to it by default. And when a series doesn't have a Name set, both the legend and the TChartLis...
by Yeray
Thu Apr 11, 2024 10:38 am
Forum: VCL
Topic: !! V2023.39.231109 Critical Performance issues !!
Replies: 7
Views: 436

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

Hello Andy,

Thanks for confirming it! :D
by Yeray
Thu Apr 11, 2024 8:39 am
Forum: FMX
Topic: TeeChart VCL/FMX v2024 [10 APR 2024] RELEASE 2024.40.240410
Replies: 0
Views: 91

TeeChart VCL/FMX v2024 [10 APR 2024] RELEASE 2024.40.240410

Greetings! Steema Support Central writes to inform you of the availability of the latest TeeChart VCL/FMX 2024.40.240410 release with full RAD Studio 12 Athens Update 1 (RX/DX/CX) support, including the new C++ for Windows 64-bit "Modern" platform. The new update includes TeeChart Pro and Standard s...
by Yeray
Thu Apr 11, 2024 8:38 am
Forum: VCL
Topic: TeeChart VCL/FMX v2024 [10 APR 2024] RELEASE 2024.40.240410
Replies: 0
Views: 93

TeeChart VCL/FMX v2024 [10 APR 2024] RELEASE 2024.40.240410

Greetings! Steema Support Central writes to inform you of the availability of the latest TeeChart VCL/FMX 2024.40.240410 release with full RAD Studio 12 Athens Update 1 (RX/DX/CX) support, including the new C++ for Windows 64-bit "Modern" platform. The new update includes TeeChart Pro and Standard s...
by Yeray
Wed Apr 10, 2024 1:45 pm
Forum: VCL
Topic: delphi 12.1
Replies: 2
Views: 80

Re: delphi 12.1

Hello Raffaele Barone,

The latest TeeChart version, v2023.39, works fine with RAD 12.1, except for the new c++ 64-bit "modern" target platform.
We are working on the next TeeChart version which will fully support it.
I hope we can publish it later today or tomorrow.
by Yeray
Wed Apr 10, 2024 1:43 pm
Forum: VCL
Topic: Cannot Rebuild TeeChart in RAD Studio 12.1 VCL
Replies: 2
Views: 63

Re: Cannot Rebuild TeeChart in RAD Studio 12.1 VCL

Hello,

The lastest TeeChart release, v2023.39, was built before this new RAD update, so it still doesn't support the new compiler.
We are working on the new version which will support it.
I hope we can publish it later today or tomorrow.
by Yeray
Mon Apr 08, 2024 4:32 pm
Forum: VCL
Topic: Download Version TeeChartVCLFMXStandard-2023.39.exe
Replies: 3
Views: 182

Re: Download Version TeeChartVCLFMXStandard-2023.39.exe

Hello,

Downloads should work fine again.
by Yeray
Mon Apr 08, 2024 4:32 pm
Forum: VCL
Topic: Downloads are not working
Replies: 3
Views: 117

Re: Downloads are not working

Hello,

Downloads should work fine again.
by Yeray
Mon Apr 08, 2024 1:35 pm
Forum: JavaScript / HTML5
Topic: PointXY - Tooltip
Replies: 1
Views: 169

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: 182

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: 117

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: 258

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: 258

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...