Search found 1194 matches

by Marc
Tue Nov 07, 2023 2:43 pm
Forum: .NET
Topic: how to show the merged X axes?
Replies: 10
Views: 7174

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

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

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

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

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

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

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

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...
by Marc
Mon Oct 09, 2023 1:44 pm
Forum: VCL / FMX
Topic: TeeGrid show graphic in column?
Replies: 2
Views: 11359

Re: TeeGrid show graphic in column?

Hello,

This example renders a bitmap to a cell:

https://github.com/Steema/TeeGrid-VCL-F ... StringGrid

Regards,
Marc Meumann
by Marc
Wed Oct 04, 2023 6:51 pm
Forum: .NET
Topic: Questions regarding export charts to various formats
Replies: 10
Views: 18513

Re: Questions regarding export charts to various formats

Hello, Here's a review of your questions: Re. 1 Does TeeChart have the functionality to scale images so that all font sizes, line weights, and other elements would scale accordingly on exporting JPEG or other formats? For bitmap formats such as JPEG & PNG, no. This to be automatic it would need to b...
by Marc
Tue Oct 03, 2023 10:35 am
Forum: .NET
Topic: Questions regarding export charts to various formats
Replies: 10
Views: 18513

Re: Questions regarding export charts to various formats

Hello, There are several issues here that we are looking at. Some that are subject to design limitations, some for which we may be able to offer a workable approach for your requirements and at least one other that we may be able to add as a feature improvement. We will get back to this thread on ea...
by Marc
Tue Oct 03, 2023 8:42 am
Forum: .NET
Topic: Questions regarding export charts to various formats
Replies: 10
Views: 18513

Re: Questions regarding export charts to various formats

Hello, Re. 3) For chart type Line, after we increase the line width it starts to be visible, that two lines join have some white gaps. The more sharper the line connects another line, the more it is visible. Looks like, two rectangles were drawn without filling a smooth connection between them. Ther...
by Marc
Wed Sep 27, 2023 9:40 am
Forum: .NET
Topic: What is the latest version that fully supports .NET 5.0?
Replies: 1
Views: 10125

Re: What is the latest version that fully supports .NET 5.0?

Hello,

Reviewing release builds it seems there was a problem with NET5 support specifically with the 4.2023.4.18 release. Subsequent builds build for NET5 projects. We recommend anyway, moving to NET6+ when possible.

Regards,
Marc Meumann
by Marc
Tue Sep 26, 2023 10:20 am
Forum: JavaScript / HTML5
Topic: Unable find mouse click event on rectangle
Replies: 9
Views: 50497

Re: Unable find mouse click event on rectangle

Hello Here's the approach used in the Steema demos: https://www.steema.com/files/public/teechart/html5/es6test/demos/ This one for example, https://www.steema.com/files/public/teechart/html5/es6test/demos/series/line/highlow.html, the resize routine is in demo.js. It modifies the width but could app...
by Marc
Tue Sep 26, 2023 7:21 am
Forum: .NET
Topic: Incorrect left axis position when changing labels text with GetAxisDrawLabel event
Replies: 4
Views: 11951

Re: Incorrect left axis position when changing labels text with GetAxisDrawLabel event

Hello, Something like this would do it: tChart1.Axes.Left.FixedLabelSize = false; tChart2.Axes.Left.FixedLabelSize = false; if (tChart1.Axes.Left.MaxLabelsWidth() > tChart2.Axes.Left.MaxLabelsWidth()) { tChart1.Axes.Left.Labels.CustomSize = tChart1.Axes.Left.MaxLabelsWidth(); tChart2.Axes.Left.Label...