Search found 1186 matches

by Marc
Tue Nov 14, 2023 10:02 am
Forum: .NET
Topic: Template Import Crashing - Marks.FollowSeriesColor and Cursor Tools
Replies: 4
Views: 4314

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

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

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

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

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

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

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

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

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

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

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...
by Marc
Sun Oct 15, 2023 10:14 am
Forum: .NET
Topic: Questions regarding export charts to various formats
Replies: 10
Views: 17909

Re: Questions regarding export charts to various formats

Progress report: 2 improvements will be included with an update build this week: correction of irregularities of circumference plot for Pie series in SVG export https://www.steema.com/bugs/show_bug.cgi?id=2636 Improvements to text positioning for SVG export https://www.steema.com/bugs/show_bug.cgi?i...
by Marc
Tue Oct 10, 2023 4:28 pm
Forum: VCL / FMX
Topic: TeeGrid OnTap
Replies: 14
Views: 31697

Re: TeeGrid OnTap

Great, thanks for the feedback.
by Marc
Tue Oct 10, 2023 7:44 am
Forum: .NET
Topic: Questions regarding export charts to various formats
Replies: 10
Views: 17909

Re: Questions regarding export charts to various formats

Thank you for the additional feedback. We're working through the points you've raised. Some issues have been resolved or are being worked on; improvements will be made to SVG export. We have currently not entered into checks on the Custom fonts for EPS question. Re. a) Is there a way, to ensure that...
by Marc
Mon Oct 09, 2023 4:18 pm
Forum: VCL / FMX
Topic: TeeGrid OnTap
Replies: 14
Views: 31697

Re: TeeGrid OnTap

Hello, Apologies for the delay with the reply. The detail for the information required is found via: var myColumn : TColumn; myRow : Integer; myX; myY: Integer; begin //myX := x //myY := y myColumn := TeeGrid1.Columns.FindAt(myX,TeeGrid1.Width); myRow := TeeGrid1.Rows.RowAt(myY,TeeGrid1.Height); Sho...