Search found 1186 matches

by Marc
Thu Mar 14, 2024 10:24 am
Forum: .NET
Topic: Licensing Issue
Replies: 1
Views: 60

Re: Licensing Issue

Hello Mark,

If you can send the MachineID the tool lists for you, to the "info@steema.com" email address, we'll check and clear the ID from the database log so you can retry.

Regards,
Marc Meumann
by Marc
Thu Mar 07, 2024 10:11 am
Forum: .NET
Topic: TeeChart for .NET v2024 [9 FEB 2024] RELEASE 2024.2.9
Replies: 3
Views: 507

Re: TeeChart for .NET v2024 [9 FEB 2024] RELEASE 2024.2.9

Please note:
Replies to version announcements are not monitored and will be missed by technical staff; We are reviewing and locking announcements where that has not been the case.

We request that all support posts be created as a new thread to the active forum area.

With thanks.
by Marc
Thu Mar 07, 2024 10:10 am
Forum: .NET
Topic: TeeChart for .NET v2023 [14 DEC 2023] RELEASE 2023.12.14
Replies: 3
Views: 5250

Re: TeeChart for .NET v2023 [14 DEC 2023] RELEASE 2023.12.14

Please note:
Replies to version announcements are not monitored and will be missed by technical staff; We are reviewing and locking announcements where that has not been the case.

We request that all support posts be created as a new thread to the active forum area.

With thanks.
by Marc
Wed Mar 06, 2024 11:45 am
Forum: .NET
Topic: TeeChart for .NET v2024 [9 FEB 2024] RELEASE 2024.2.9
Replies: 3
Views: 507

Re: TeeChart for .NET v2024 [9 FEB 2024] RELEASE 2024.2.9

Thank you for the feedback and sorry if it is, as indeed it seems, that we have lost you as a customer. There were some particularly difficult problems to resolve with the migration of TeeChart for NET with framework 4 during the second part of last year. A proposal made, earlier on in the year, to ...
by Marc
Thu Feb 29, 2024 12:35 pm
Forum: VCL / FMX
Topic: TeeGrid color questions
Replies: 8
Views: 11540

Re: TeeGrid color questions

Hello,

We'll be publishing the fix very soon, there may be a subtle difference to your code.

Regards,
Marc Meumann
by Marc
Mon Feb 26, 2024 9:25 am
Forum: VCL / FMX
Topic: TeeGrid cell edit and scrolling with fixed columns
Replies: 1
Views: 159

Re: TeeGrid cell edit and scrolling with fixed columns

Hello, Re. (a) I'm not sure that you can select a row without a cell being implicitly selected. TeeGrid starts with the zero,zero location cell selected. If you were to add this code for example, it indicates the row selected: uses Tee.Grid.Selection procedure TFormLocked.TeeGrid1Select(Sender: TObj...
by Marc
Mon Feb 05, 2024 10:24 am
Forum: .NET
Topic: WPF ColorGrid DataBinding
Replies: 30
Views: 38943

Re: WPF ColorGrid DataBinding

Reviewing this issue it seems that the Symbols' Continuous property mau have been missed at the time:

Code: Select all

tChart1.Legend.Symbol.Continous = true;
I will cliose the issue.

Regards,
Marc Meumann
by Marc
Tue Jan 30, 2024 1:56 pm
Forum: VCL / FMX
Topic: TeeGrid V1.14 throws exception when trying to debug an application
Replies: 9
Views: 1077

Re: TeeGrid V1.14 throws exception when trying to debug an application

I just checked that. It runs ok with or without the 'runtime packages' selected. It may be something in the package list on your setup that is causing the problem.

TeeGrid is in the package list on the test installation here.

Regards,
Marc
by Marc
Mon Jan 29, 2024 12:33 pm
Forum: .NET
Topic: (Solved) How to chart 3d in avalonia?
Replies: 3
Views: 421

Re: (Solved) How to chart 3d in avalonia?

Thank you for the error report and feedback, very useful.

Regards,
Marc Meumann
by Marc
Fri Jan 26, 2024 12:53 pm
Forum: VCL / FMX
Topic: TeeGrid V1.14 throws exception when trying to debug an application
Replies: 9
Views: 1077

Re: TeeGrid V1.14 throws exception when trying to debug an application

Hello, the content for my form Grid is pretty much the same, no FormCreate event or Button but the Grid syntax is identical. object Form1: TForm1 Left = 0 Top = 0 Caption = 'Form1' ClientHeight = 441 ClientWidth = 624 Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.He...
by Marc
Fri Jan 26, 2024 11:06 am
Forum: VCL / FMX
Topic: TeeGrid V1.14 throws exception when trying to debug an application
Replies: 9
Views: 1077

Re: TeeGrid V1.14 throws exception when trying to debug an application

Hello,

I followed your steps with a new VCL project in RAD Studio 12 and TeeGrid v1.14 and it built/ran ok.

What version of RAD Studio are you using?

With thanks.
Regards,
Marc Meumann
by Marc
Fri Dec 29, 2023 12:20 pm
Forum: .NET
Topic: dragdrop .csv files issue
Replies: 1
Views: 5906

Re: dragdrop .csv files issue

Hello Sharkann,

Please check this forum thread for a working example:

Drag-Drop onto custom Y-axis chart area

Regards,
Marc Meumann
by Marc
Fri Dec 29, 2023 9:08 am
Forum: VCL
Topic: How to get TColorGrid scrolling
Replies: 5
Views: 2091

Re: How to get TColorGrid scrolling

Hello Sciensoria, If you add a ColorGrid to a Chart and add the following code you'll see a basic scroll on the data: procedure TForm5.Button1Click(Sender: TObject); begin Chart1.Axes.Bottom.Scroll(1); //scroll right end; procedure TForm5.Button2Click(Sender: TObject); begin Chart1.Axes.Bottom.Scrol...
by Marc
Thu Dec 28, 2023 1:21 pm
Forum: .NET
Topic: View legend symbols at custom location
Replies: 6
Views: 3312

Re: View legend symbols at custom location

Hello, You can't get the symbol itself but you can get most of the information you need to plot it. The event from the previous examples offers up the rectangular size of the symbol to be plotted and the colours can be extracted from the Series value index, then knowing if you're going to have a squ...
by Marc
Wed Dec 27, 2023 3:25 pm
Forum: .NET
Topic: An unexpected stack of bars and a line at the top
Replies: 2
Views: 1461

Re: An unexpected stack of bars and a line at the top

Hello, Thank you for the bug report. Point 1 is reproducible. It may be an error with the clipping region at render time; we'll take a look. bug ref bug id 2663 . Point 2 can be corrected by alllocating the right axis in this way: bar2.VertAxis = VerticalAxis.Right; If you wish to use a Custom Verti...