Search found 1275 matches

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

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 2992 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: 3890

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

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

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

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 14499 times
Regards,
Marc
by Marc
Mon Mar 10, 2025 3:19 pm
Forum: VCL / FMX
Topic: help with installation
Replies: 10
Views: 43457

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

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

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...
by Marc
Thu Feb 27, 2025 9:17 am
Forum: .NET
Topic: Custom y axis labels
Replies: 6
Views: 18311

Re: Custom y axis labels

Hello, If you run a cross-check you can confirm that the Labels have been added for the plot. For example, with a Listbox on the form: private void tChart1_AfterDraw(object sender, Steema.TeeChart.Drawing.IGraphics3D g) { listBox1.Items.Clear(); for (int i=0; i < tChart1.Axes.Bottom.Labels.Items.Cou...
by Marc
Thu Feb 20, 2025 1:03 pm
Forum: .NET
Topic: Panning with ContextMenuStrip
Replies: 1
Views: 8484

Re: Panning with ContextMenuStrip

Hello, There are some options to control the panning (scroll), examples here below, including changing the mousebutton used for Panning: //add extra key control to enable panning tChart1.Panning.KeyShift = Steema.TeeChart.Drawing.Keys.Shift; // swap keys for scroll and zoom and deactivates zoom. (so...
by Marc
Mon Feb 17, 2025 8:43 am
Forum: .NET
Topic: .Net TeeChart Embedded License not evaluated
Replies: 2
Views: 6267

Re: .Net TeeChart Embedded License not evaluated

Hello Srikanth,

The requirement looks similar to the question posted here:

C# library running TeeChart being called from client app

Note the use of "[assembly: EntryAssembly]" in the AssemblyInfo of the consumed dll (where TeeChart is being used).

Regards,
Marc Meumann
by Marc
Tue Feb 04, 2025 12:01 pm
Forum: .NET
Topic: Specific custom y axis labels
Replies: 6
Views: 27325

Re: Specific custom y axis labels

as a followup. The issue has been resolved for the next release.
by Marc
Wed Jan 29, 2025 12:43 pm
Forum: .NET
Topic: Specific custom y axis labels
Replies: 6
Views: 27325

Re: Specific custom y axis labels

There's a TeeChart bug here. Custom axes stats don't correctly update after a zoom (like they do after a scroll/pan). We'll fix it. Thanks for reporting the issue.

https://www.steema.com/bugs/show_bug.cgi?id=2758

Regards,
Marc
by Marc
Wed Jan 29, 2025 10:51 am
Forum: .NET
Topic: Specific custom y axis labels
Replies: 6
Views: 27325

Re: Specific custom y axis labels

The Chart needs to have calculated the axes before settings items will work, normally a start, once only, repaint resolves that. But anyway if you want to zoom the axes and require a change of labels, then the labels will require updating and the callback should be used. I'll modify the example and ...