Search found 1281 matches

by Marc
Fri May 16, 2025 12:22 pm
Forum: VCL / FMX
Topic: Automatically rendering a TChart in grid via RTTI
Replies: 1
Views: 4711

Re: Automatically rendering a TChart in grid via RTTI

Hello, We don't have an example of that and I'm looking further at current possibilities and to whether extended TeeBI classes we are working to integrate will offer a means to render a live chart. For the moment, at the least the image of the Chart can be generated and rendered in the same way as t...
by Marc
Fri May 16, 2025 7:42 am
Forum: VCL / FMX
Topic: Problem with Cell Editors Demo
Replies: 1
Views: 2105

Re: Problem with Cell Editors Demo

Hello, Apologies for the delay with this reply. I can't reproduce the first problem you found, of the checkbox appearing in the text field, but see that Checkbox does behave differently in terms of focus to the other editor types. We'll review the interaction of checkbox as a chosen Editor. Regards,...
by Marc
Fri May 09, 2025 9:25 am
Forum: VCL / FMX
Topic: Problem with Virtual Array Data demo
Replies: 3
Views: 9496

Re: Problem with Virtual Array Data demo

..I've checked. VCLTee.Editor.Painter.GDIPlus is missing from the VCLTeeGrid.dpk file. We'll add the entry for the next release (being prepared now). As an interim you can manually add it as a last line to that file before running TeeRecompile. eg. VCLTee.Editor.Grid.Ticker in '..\VCL\VCLTee.Editor....
by Marc
Fri May 09, 2025 8:50 am
Forum: VCL / FMX
Topic: Problem with Virtual Array Data demo
Replies: 3
Views: 9496

Re: Problem with Virtual Array Data demo

Hello, Hmmm.... I see a "VCLTee.Editor.Painter.GDIPlus" .pas and .dfm in the sources VCL folder for my 1.17 installation and the demo runs correctly "demos\VirtualData\Array\TeeGrid_Array_Data.dproj". I do have the source pathed though. I'll check with a clean installation. I confirm that the compil...
by Marc
Fri May 09, 2025 8:39 am
Forum: VCL / FMX
Topic: Demo in wrong place
Replies: 3
Views: 2826

Re: Demo in wrong place

Hello,

Yes, TeeBI supports VCL but requires the extended TeeBI sourcecode is necessary if integration is required. We are working to address that and expect to publish publicly available TeeBI units in the near future for wider access from TeeGrid.

Regards,
Marc Meumann
by Marc
Thu Apr 24, 2025 11:51 am
Forum: .NET
Topic: FastLine.LinePen.Width
Replies: 1
Views: 14453

Re: FastLine.LinePen.Width

Hello,

At this moment in time, only an integer setting for Pen width is available for the FastLine LinePen. This is a property that will likely be moved to double at some stage in the future.

Regards,
Marc Meumann
by Marc
Tue Mar 25, 2025 9:28 am
Forum: VCL / FMX
Topic: Scrollbars do not affect the teegrid
Replies: 3
Views: 33953

Re: Scrollbars do not affect the teegrid

Hello,

We're unable to reproduce the problem in RAD Studio 12 (Version 29.0.53982.0329 ). Are you able to send us a small sample project that reproduces the issue. Tested with with VCL C++ x64.

gridscroll.gif
gridscroll.gif (195.47 KiB) Viewed 33054 times

Regards,
Marc Meumann
by Marc
Fri Mar 21, 2025 1:24 pm
Forum: VCL / FMX
Topic: Scrollbars do not affect the teegrid
Replies: 3
Views: 33953

Re: Scrollbars do not affect the teegrid

Thank you for the error report. We are checking the issue.

Regards,
Marc Meumann
by Marc
Thu Mar 20, 2025 1:04 pm
Forum: .NET
Topic: drawing layers
Replies: 1
Views: 8156

Re: drawing layers

Hello,

You can use the alternative events in the paint cycle to (z) position your plot:
this order:
  • BeforeDrawAxes
  • BeforeDrawSeries
or (last as you are using now)
  • AfterDraw
Regards,
Marc Meumann
by Marc
Tue Mar 18, 2025 9:00 am
Forum: VCL / FMX
Topic: _Headers : invalid property value C++ FMX (win32 only)
Replies: 5
Views: 24979

Re: _Headers : invalid property value C++ FMX (win32 only)

Hello, This issue has been a moving target, resulting with correct functioning for certain RAD Studio 12 patch releases. As you point out, it only affects C++ projects. We are checking this now with RAD Studio update 3. For your purposes, it may be acceptable to you (?) to disable the _Headers prope...
by Marc
Tue Mar 11, 2025 10:52 am
Forum: VCL / FMX
Topic: _Headers : invalid property value C++ FMX (win32 only)
Replies: 5
Views: 24979

Re: _Headers : invalid property value C++ FMX (win32 only)

Hello,

Yes, the error has appeared again for the latest C++ Windows x64 but works fine with modern C++ Windows x64. We'll take another look. Embarcadero recommends the use of modern.
20250311_TeeGrid117_RS12.jpg
20250311_TeeGrid117_RS12.jpg (263 KiB) Viewed 24202 times
Regards,
Marc
by Marc
Mon Mar 10, 2025 3:19 pm
Forum: VCL / FMX
Topic: help with installation
Replies: 10
Views: 60074

Re: help with installation

Hello, TeeGrid version 1.15 was built for RAD Studio 12.1. patch 1, if you have that version of RAD Studio (I don't have a record of whether that covers the build number you have sent). Embarcadero introduced several bugfix releases in close succession, that resolved issues for x64 compilation. ref:...
by Marc
Mon Mar 10, 2025 9:28 am
Forum: VCL / FMX
Topic: help with installation
Replies: 10
Views: 60074

Re: help with installation

Hello,

The issue was caused by use of the non-latest version of the Athens IDE. The issue was fixed by Embarcadero for the next 12.2 build. Please be sure to be using the latest version of RAD Studio 12.

ie.
Embarcadero® RAD Studio 12 Version 29.0.53982.0329
Regards,
Marc Meumann
by Marc
Mon Mar 10, 2025 8:50 am
Forum: JavaScript / HTML5
Topic: Scroller with heatmap series and inverted y-axis stuttering
Replies: 3
Views: 84815

Re: Scroller with heatmap series and inverted y-axis stuttering

Hello, We are looking at the issue. In the meantime we offer a workaround: It uses a boolean variable to force a one-time repaint for the scroller after changing to inverted: eg. open scope variable: var hasPainted; //set to false in main draw() routine. //------ to run before chart.draw() in main e...