Search found 1190 matches

by Marc
Mon Nov 20, 2023 7:41 am
Forum: .NET
Topic: Position setting of coordinate axis labels
Replies: 5
Views: 5815

Re: Position setting of coordinate axis labels

Hello,

Apologies for the delay replying. Currently, non-regular angles, (not 0,90,180,270), are not correctly rendering distance from the axis. We are reviewing the code related to this area.

Regards,
Marc Meumann
by Marc
Fri Nov 17, 2023 8:43 am
Forum: .NET
Topic: contour legend bug?
Replies: 2
Views: 4416

Re: contour legend bug?

Update. The issue has been resolved for inclusion in the next update. The problem relates to the LegendStyles.Palette setting for the Legend Style, hence a temporary workaround to be able to continue working could be to set it to "Values". ie. tChart1.Legend.LegendStyle = LegendStyles.Values; Regard...
by Marc
Wed Nov 15, 2023 9:06 am
Forum: .NET
Topic: contour legend bug?
Replies: 2
Views: 4416

Re: contour legend bug?

Hello,

Thank you for the bug report. I confirm that we can reproduce this problem for 3D Series for the latest build when Legend visible is true. We will check and fix the problem.

Regards,
Marc Meumann
by Marc
Tue Nov 14, 2023 11:56 am
Forum: .NET
Topic: how to show the merged X axes?
Replies: 10
Views: 7070

Re: how to show the merged X axes?

Hello, Here's an example how to dynamically modify the location of output relative to Axis Label angle. This example outputs a small test text sample. //declare var for max label width (length) double maxLabelWidth = 0; //then in Form_load or data refresh set: maxLabelWidth = tChart1.Axes.Bottom.Max...
by Marc
Tue Nov 14, 2023 10:02 am
Forum: .NET
Topic: Template Import Crashing - Marks.FollowSeriesColor and Cursor Tools
Replies: 4
Views: 4759

Re: Template Import Crashing - Marks.FollowSeriesColor and Cursor Tools

Hello,

As a follow-up, A fix has been applied to TeeChart code to be included with the next update release.

Regards,
Marc
by Marc
Thu Nov 09, 2023 10:01 am
Forum: .NET
Topic: how to show the merged X axes?
Replies: 10
Views: 7070

Re: how to show the merged X axes?

Hello, Re. I want to stretch vertical direction See my last answer about Margins. Re. I have use tChart1.Axes.Bottom.CalcYPosValue(0) eg.. but i can‘t see the point A point is a combination of X and Y ie. tChart1.Axes.Bottom.CalcXPosValue(0), tChart1.Axes.Bottom.CalcYPosValue(0) Substitute that into...
by Marc
Thu Nov 09, 2023 8:43 am
Forum: .NET
Topic: how to show the merged X axes?
Replies: 10
Views: 7070

Re: how to show the merged X axes?

An extra note, To make room for the extra content you wish to plot, increase the Chart's bottom margin.

For example:

Code: Select all

tChart1.Panel.MarginUnits = PanelMarginUnits.Pixels;
tChart1.Panel.MarginBottom = 80;
by Marc
Thu Nov 09, 2023 8:15 am
Forum: .NET
Topic: how to show the merged X axes?
Replies: 10
Views: 7070

Re: how to show the merged X axes?

Hello, Use the moveTo, lineTo Canvas methods to plot the lines you require. Ypu can get the coordinates for each location by converting the axis location you wish for the group you decide. ie. /*x location:*/ tChart1.Axes.Bottom.CalcXPosValue(yourPointvalue) /*y location:*/ tChart1.Axes.Left.CalcYPo...
by Marc
Wed Nov 08, 2023 4:50 pm
Forum: .NET
Topic: Template Import Crashing - Marks.FollowSeriesColor and Cursor Tools
Replies: 4
Views: 4759

Re: Template Import Crashing - Marks.FollowSeriesColor and Cursor Tools

Hello,

Thanks you for the extra info. I can reproduce the error in a fresh project. My test project may be hanging on to a cached-package reference; I'm checking for differences and cause.

Regards,
Marc
by Marc
Wed Nov 08, 2023 7:12 am
Forum: .NET
Topic: Template Import Crashing - Marks.FollowSeriesColor and Cursor Tools
Replies: 4
Views: 4759

Re: Template Import Crashing - Marks.FollowSeriesColor and Cursor Tools

Hello, Using your test code in a NET 4.8 project, I am unable to reproduce the problem. The template loads correctly, respecting the two code lines: line.Marks.FollowSeriesColor = true; tChart1.Tools.Add(new Steema.TeeChart.Tools.CursorTool()); I have tested with TeeChart release 4.2023.11.6 in VSNe...
by Marc
Tue Nov 07, 2023 6:55 pm
Forum: .NET
Topic: how to show the merged X axes?
Replies: 10
Views: 7070

Re: how to show the merged X axes?

Hello, Perhaps I'm not understanding the question well so I'll answer different aspects in the way I see them. An index on the data would give you the exact chart you want without the year labels: ie. int[] idx = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; int[] year = { 2021, 2021, 2021, 2021, 2022, 2022...
by Marc
Tue Nov 07, 2023 2:43 pm
Forum: .NET
Topic: how to show the merged X axes?
Replies: 10
Views: 7070

Re: how to show the merged X axes?

Hello,

The points appear to be a continuous sequence. If you wish to fix the order then the easiest way might be to add an index to each point: 0,1,2..etc and use the year as a label, not as an X value.

Regards,
Marc Meumann
by Marc
Thu Oct 26, 2023 11:47 am
Forum: VCL / FMX
Topic: TeeGrid V1.12 & C++ Builder 11.3 and runtime packages
Replies: 1
Views: 12784

Re: TeeGrid V1.12 & C++ Builder 11.3 and runtime packages

Hello Andy,

Thank you for the bug report. We can reproduce it and will check for a fix.

Regards,
Marc Meumann
by Marc
Thu Oct 26, 2023 11:38 am
Forum: VCL / FMX
Topic: TeeGrid Swipe?
Replies: 2
Views: 15238

Re: TeeGrid Swipe?

Hello,

No gestures beyond Tap are currently supported. It has been added as a feature request.

Regards,
Marc Meumann
by Marc
Thu Oct 26, 2023 11:10 am
Forum: VCL / FMX
Topic: TeeGrid OnTap
Replies: 14
Views: 32420

Re: TeeGrid OnTap

Hello, I've tried it in the CellEditors project (FMX on Windows) with the following co-ordinates; procedure TFormCellEditors.Button1Click(Sender: TObject); var myColumn : TColumn; myRow : Integer; begin myColumn := TeeGrid1.Columns.FindAt(160,TeeGrid1.Width); myRow := TeeGrid1.Rows.RowAt(218,TeeGrid...